Skip to content

Commit 14dc2aa

Browse files
authored
Merge pull request #3 from icecream17/patch-2
2 parents 9da0512 + c9e1900 commit 14dc2aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/find-view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ class FindView {
235235
'find-and-replace:use-selection-as-replace-pattern': this.setSelectionAsReplacePattern.bind(this)
236236
}));
237237

238-
this.refs.replaceNextButton.addEventListener('click', e => e.shiftKey ? this.replacePrevious() : this.replaceNext()));
238+
this.refs.replaceNextButton.addEventListener('click', e => e.shiftKey ? this.replacePrevious() : this.replaceNext());
239239
this.refs.replaceAllButton.addEventListener('click', this.replaceAll.bind(this));
240240
this.subscriptions.add(atom.commands.add('atom-workspace', {
241241
'find-and-replace:replace-previous': this.replacePrevious.bind(this),

0 commit comments

Comments
 (0)