Skip to content

Commit

Permalink
Merge pull request #37088 from peterwmwong/fix-moveSelectionToPreviou…
Browse files Browse the repository at this point in the history
…sFindMatch

Fix moveSelectionToPreviousFindMatch accidentally mapped to addSelectionToPreviousFindMatch
  • Loading branch information
alexdima committed Oct 30, 2017
2 parents f5e8383 + 9d78344 commit 51c889b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/editor/contrib/multicursor/common/multicursor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ export class MultiCursorSelectionController extends Disposable implements IEdito
public moveSelectionToPreviousFindMatch(findController: CommonFindController): void {
this._beginSessionIfNeeded(findController);
if (this._session) {
this._applySessionResult(this._session.addSelectionToPreviousFindMatch());
this._applySessionResult(this._session.moveSelectionToPreviousFindMatch());
}
}

Expand Down

0 comments on commit 51c889b

Please sign in to comment.