Code lens support for running tests

This commit is contained in:
Jeremy A. Kolb 2019-01-11 15:16:55 -05:00
parent 738c958a04
commit faf0037635
7 changed files with 198 additions and 87 deletions

View file

@ -55,6 +55,9 @@ export function activate(context: vscode.ExtensionContext) {
);
overrideCommand('type', commands.onEnter.handle);
// Unlike the above this does not send requests to the language server
registerCommand('ra-lsp.run-single', commands.runSingle.handle);
// Notifications are events triggered by the language server
const allNotifications: Iterable<
[string, lc.GenericNotificationHandler]