diff --git a/packages/plugin-ext-vscode/src/browser/plugin-vscode-commands-contribution.ts b/packages/plugin-ext-vscode/src/browser/plugin-vscode-commands-contribution.ts index 88712afb10b99..d5fe9e4fe7c06 100644 --- a/packages/plugin-ext-vscode/src/browser/plugin-vscode-commands-contribution.ts +++ b/packages/plugin-ext-vscode/src/browser/plugin-vscode-commands-contribution.ts @@ -159,6 +159,9 @@ export class PluginVscodeCommandsContribution implements CommandContribution { commands.registerCommand({ id: 'workbench.action.closeAllEditors' }, { execute: () => commands.executeCommand(CommonCommands.CLOSE_ALL_TABS.id) }); + commands.registerCommand({ id: 'editor.action.startFindReplaceAction' }, { + execute: () => commands.executeCommand(CommonCommands.REPLACE.id) + }); commands.registerCommand({ id: 'workbench.action.quickOpen' }, { execute: () => this.quickOpen.open('') });