Skip to content

Commit ca1c240

Browse files
committed
Fix Find Next command
1 parent 61c2b1a commit ca1c240

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

+2-2
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)