Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ca1c240

Browse filesBrowse files
committed
Fix Find Next command
1 parent 61c2b1a commit ca1c240
Copy full SHA for ca1c240

File tree

Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-2
lines changed

‎arduino-ide-extension/src/browser/contributions/edit-contributions.ts

Copy file name to clipboardExpand all lines: arduino-ide-extension/src/browser/contributions/edit-contributions.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ export class EditContributions extends Contribution {
4343
execute: () => this.run('actions.find'),
4444
});
4545
registry.registerCommand(EditContributions.Commands.FIND_NEXT, {
46-
execute: () => this.run('actions.findWithSelection'),
46+
execute: () => this.run('editor.action.nextMatchFindAction'),
4747
});
4848
registry.registerCommand(EditContributions.Commands.FIND_PREVIOUS, {
49-
execute: () => this.run('editor.action.nextMatchFindAction'),
49+
execute: () => this.run('editor.action.previousMatchFindAction'),
5050
});
5151
registry.registerCommand(EditContributions.Commands.USE_FOR_FIND, {
5252
execute: () => this.run('editor.action.previousSelectionMatchFindAction'),

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.