aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/extension.ts
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2019-01-22 22:25:22 +0000
committerbors[bot] <bors[bot]@users.noreply.github.com>2019-01-22 22:25:22 +0000
commitf90783fc5309e1835b22aa65d071efb9cf3eb9df (patch)
treef60d21521d667e46bb7596c74b0064f3650798e2 /editors/code/src/extension.ts
parente08df3219d7a06b1e38c632e7f13967fb540769b (diff)
parentc0dba92b7fec667bda1c1a1af258ef37ee8cbf54 (diff)
Merge #602
602: add status command r=matklad a=matklad Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'editors/code/src/extension.ts')
-rw-r--r--editors/code/src/extension.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/code/src/extension.ts b/editors/code/src/extension.ts
index 0098c9454..288a852aa 100644
--- a/editors/code/src/extension.ts
+++ b/editors/code/src/extension.ts
@@ -45,6 +45,7 @@ export function activate(context: vscode.ExtensionContext) {
45 } 45 }
46 46
47 // Commands are requests from vscode to the language server 47 // Commands are requests from vscode to the language server
48 registerCommand('ra-lsp.analyzerStatus', commands.analyzerStatus.handle);
48 registerCommand('ra-lsp.syntaxTree', commands.syntaxTree.handle); 49 registerCommand('ra-lsp.syntaxTree', commands.syntaxTree.handle);
49 registerCommand('ra-lsp.extendSelection', commands.extendSelection.handle); 50 registerCommand('ra-lsp.extendSelection', commands.extendSelection.handle);
50 registerCommand('ra-lsp.matchingBrace', commands.matchingBrace.handle); 51 registerCommand('ra-lsp.matchingBrace', commands.matchingBrace.handle);