aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/extension.ts
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/src/extension.ts')
-rw-r--r--editors/code/src/extension.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/editors/code/src/extension.ts b/editors/code/src/extension.ts
index 1dfa6046f..8654b6030 100644
--- a/editors/code/src/extension.ts
+++ b/editors/code/src/extension.ts
@@ -3,7 +3,7 @@ import * as lc from 'vscode-languageclient';
3 3
4import * as commands from './commands'; 4import * as commands from './commands';
5import { CargoWatchProvider } from './commands/cargo_watch'; 5import { CargoWatchProvider } from './commands/cargo_watch';
6import { ExpandMacroHoverProvider } from './commands/expand_macro' 6import { ExpandMacroHoverProvider } from './commands/expand_macro';
7import { HintsUpdater } from './commands/inlay_hints'; 7import { HintsUpdater } from './commands/inlay_hints';
8import { 8import {
9 interactivelyStartCargoWatch, 9 interactivelyStartCargoWatch,
@@ -92,11 +92,11 @@ export function activate(context: vscode.ExtensionContext) {
92 const allNotifications: Iterable< 92 const allNotifications: Iterable<
93 [string, lc.GenericNotificationHandler] 93 [string, lc.GenericNotificationHandler]
94 > = [ 94 > = [
95 [ 95 [
96 'rust-analyzer/publishDecorations', 96 'rust-analyzer/publishDecorations',
97 notifications.publishDecorations.handle 97 notifications.publishDecorations.handle
98 ] 98 ]
99 ]; 99 ];
100 const syntaxTreeContentProvider = new SyntaxTreeContentProvider(); 100 const syntaxTreeContentProvider = new SyntaxTreeContentProvider();
101 101
102 // The events below are plain old javascript events, triggered and handled by vscode 102 // The events below are plain old javascript events, triggered and handled by vscode