aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/extension.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-01-25 13:10:34 +0000
committerAleksey Kladov <[email protected]>2019-01-25 13:16:42 +0000
commit8d68b76ba01dcd190e037e4d61a94d4c9d568bdd (patch)
tree07aa4db38ba212ab1e2af1b791c409e5407ac53b /editors/code/src/extension.ts
parent021e691997efc35c983808ee3470a060a3ec3e96 (diff)
better stats
Diffstat (limited to 'editors/code/src/extension.ts')
-rw-r--r--editors/code/src/extension.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/editors/code/src/extension.ts b/editors/code/src/extension.ts
index 288a852aa..3af95c599 100644
--- a/editors/code/src/extension.ts
+++ b/editors/code/src/extension.ts
@@ -45,7 +45,10 @@ 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(
49 'ra-lsp.analyzerStatus',
50 commands.analyzerStatus.makeCommand(context)
51 );
49 registerCommand('ra-lsp.syntaxTree', commands.syntaxTree.handle); 52 registerCommand('ra-lsp.syntaxTree', commands.syntaxTree.handle);
50 registerCommand('ra-lsp.extendSelection', commands.extendSelection.handle); 53 registerCommand('ra-lsp.extendSelection', commands.extendSelection.handle);
51 registerCommand('ra-lsp.matchingBrace', commands.matchingBrace.handle); 54 registerCommand('ra-lsp.matchingBrace', commands.matchingBrace.handle);