Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/main.ts')
| -rw-r--r-- | editors/code/src/main.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index 61824fae21..7c5be156eb 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts @@ -160,6 +160,8 @@ async function initCommonContext(context: vscode.ExtensionContext, ctx: Ctx) { ctx.registerCommand("resolveCodeAction", commands.resolveCodeAction); ctx.registerCommand("applyActionGroup", commands.applyActionGroup); ctx.registerCommand("gotoLocation", commands.gotoLocation); + + ctx.registerCommand("linkToCommand", commands.linkToCommand); } export async function deactivate() { |