💄 Replace editor.getBuffer().getText() w/ editor.getText()

This commit is contained in:
Nathan Sobo
2012-07-04 12:41:51 -06:00
parent 6d7a6f9a92
commit b254fa39d9
7 changed files with 22 additions and 22 deletions

View File

@@ -72,7 +72,7 @@ class FuzzyFinder extends View
populatePathList: ->
@pathList.empty()
for path in @findMatches(@miniEditor.getBuffer().getText())
for path in @findMatches(@miniEditor.getText())
@pathList.append $$ -> @li path
@pathList.children('li:first').addClass 'selected'