diff --git a/lib/find-view.js b/lib/find-view.js index 69b3eba1..acb63ef1 100644 --- a/lib/find-view.js +++ b/lib/find-view.js @@ -277,7 +277,7 @@ class FindView { } handleFindEvents() { - this.findEditor.onDidStopChanging(() => this.liveSearch()); + this.findEditor.onDidChange(() => this.liveSearch()); this.refs.nextButton.addEventListener('click', e => e.shiftKey ? this.findPrevious({focusEditorAfter: true}) : this.findNext({focusEditorAfter: true})); this.refs.findAllButton.addEventListener('click', this.findAll.bind(this)); this.subscriptions.add(atom.commands.add('atom-workspace', {