We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Find Next
1 parent 61c2b1a commit ca1c240Copy full SHA for ca1c240
arduino-ide-extension/src/browser/contributions/edit-contributions.ts
@@ -43,10 +43,10 @@ export class EditContributions extends Contribution {
43
execute: () => this.run('actions.find'),
44
});
45
registry.registerCommand(EditContributions.Commands.FIND_NEXT, {
46
- execute: () => this.run('actions.findWithSelection'),
+ execute: () => this.run('editor.action.nextMatchFindAction'),
47
48
registry.registerCommand(EditContributions.Commands.FIND_PREVIOUS, {
49
- execute: () => this.run('editor.action.nextMatchFindAction'),
+ execute: () => this.run('editor.action.previousMatchFindAction'),
50
51
registry.registerCommand(EditContributions.Commands.USE_FOR_FIND, {
52
execute: () => this.run('editor.action.previousSelectionMatchFindAction'),
0 commit comments