aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/main.ts
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-12-30 14:11:30 +0000
committerAleksey Kladov <[email protected]>2019-12-30 14:11:30 +0000
commit57df9bed703bd0f8b7a7cc593152b65b543ad121 (patch)
tree3e780c0fdd5c0d131d228747952424e6d43bfcb6 /editors/code/src/main.ts
parenta0c035096053529944dbb49c148371a8ad9b3fc0 (diff)
Run prettier
Diffstat (limited to 'editors/code/src/main.ts')
-rw-r--r--editors/code/src/main.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index 9500219ca..f96fb1962 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -9,7 +9,7 @@ import { StatusDisplay } from './commands/watch_status';
9import * as events from './events'; 9import * as events from './events';
10import * as notifications from './notifications'; 10import * as notifications from './notifications';
11import { Server } from './server'; 11import { Server } from './server';
12import { Ctx } from './ctx' 12import { Ctx } from './ctx';
13 13
14let ctx!: Ctx; 14let ctx!: Ctx;
15 15
@@ -94,15 +94,15 @@ export async function activate(context: vscode.ExtensionContext) {
94 string, 94 string,
95 lc.GenericNotificationHandler, 95 lc.GenericNotificationHandler,
96 ]> = [ 96 ]> = [
97 [ 97 [
98 'rust-analyzer/publishDecorations', 98 'rust-analyzer/publishDecorations',
99 notifications.publishDecorations.handle, 99 notifications.publishDecorations.handle,
100 ], 100 ],
101 [ 101 [
102 '$/progress', 102 '$/progress',
103 params => watchStatus.handleProgressNotification(params), 103 params => watchStatus.handleProgressNotification(params),
104 ], 104 ],
105 ]; 105 ];
106 const syntaxTreeContentProvider = new SyntaxTreeContentProvider(); 106 const syntaxTreeContentProvider = new SyntaxTreeContentProvider();
107 const expandMacroContentProvider = new ExpandMacroContentProvider(); 107 const expandMacroContentProvider = new ExpandMacroContentProvider();
108 108