Remove directories from fuzzy-finder

This commit is contained in:
Corey Johnson & Kevin Sawicki
2012-12-12 17:25:45 -08:00
parent 6f6dfe78a9
commit a6a05b6ff4
4 changed files with 7 additions and 8 deletions

View File

@@ -53,7 +53,7 @@ class Project
getFilePaths: ->
deferred = $.Deferred()
fs.getAllPathsAsync @getPath(), (paths) =>
fs.getAllFilePathsAsync @getPath(), (paths) =>
paths = paths.filter (path) => not @isPathIgnored(path)
deferred.resolve(paths)
deferred.promise()