We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1689420 commit b7c53afCopy full SHA for b7c53af
src/vs/editor/browser/widget/codeEditorWidget.ts
@@ -347,9 +347,9 @@ export class CodeEditorWidget extends Disposable implements editorBrowser.ICodeE
347
action.alias,
348
action.metadata,
349
action.precondition ?? undefined,
350
- (): Promise<void> => {
+ (args: unknown): Promise<void> => {
351
return this._instantiationService.invokeFunction((accessor) => {
352
- return Promise.resolve(action.runEditorCommand(accessor, this, null));
+ return Promise.resolve(action.runEditorCommand(accessor, this, args));
353
});
354
},
355
this._contextKeyService
0 commit comments