mirror of
https://github.com/atom/atom.git
synced 2026-02-13 08:04:56 -05:00
Fixed fuzzy-finder's file regex
This commit is contained in:
@@ -6,7 +6,7 @@ fs = require 'fs'
|
||||
|
||||
module.exports =
|
||||
class FuzzyFinder extends SelectList
|
||||
filenameRegex: /([^\w\.\-\/\\])/
|
||||
filenameRegex: /[\w\.\-\/\\]+/
|
||||
|
||||
@activate: (rootView) ->
|
||||
@instance = new FuzzyFinder(rootView)
|
||||
|
||||
Reference in New Issue
Block a user