aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/extension.ts
diff options
context:
space:
mode:
authorJeremy A. Kolb <[email protected]>2019-01-11 20:16:55 +0000
committerJeremy A. Kolb <[email protected]>2019-01-11 20:16:55 +0000
commitfaf003763516074c619cee7e43ca8bc365540c92 (patch)
tree54407f422a1a5b969b659f74fe4608be622ec596 /editors/code/src/extension.ts
parent738c958a044361dc84a0f27e57b40f66a5815990 (diff)
Code lens support for running tests
Diffstat (limited to 'editors/code/src/extension.ts')
-rw-r--r--editors/code/src/extension.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/editors/code/src/extension.ts b/editors/code/src/extension.ts
index 4acd54d90..acbb1f734 100644
--- a/editors/code/src/extension.ts
+++ b/editors/code/src/extension.ts
@@ -55,6 +55,9 @@ export function activate(context: vscode.ExtensionContext) {
55 ); 55 );
56 overrideCommand('type', commands.onEnter.handle); 56 overrideCommand('type', commands.onEnter.handle);
57 57
58 // Unlike the above this does not send requests to the language server
59 registerCommand('ra-lsp.run-single', commands.runSingle.handle);
60
58 // Notifications are events triggered by the language server 61 // Notifications are events triggered by the language server
59 const allNotifications: Iterable< 62 const allNotifications: Iterable<
60 [string, lc.GenericNotificationHandler] 63 [string, lc.GenericNotificationHandler]