rust-analyzer/editors/code/src/main.ts

79 lines
2.6 KiB
TypeScript
Raw Normal View History

2018-08-10 12:07:43 +00:00
import * as vscode from 'vscode';
2018-10-08 18:55:22 +00:00
import * as lc from 'vscode-languageclient';
2018-08-10 12:07:43 +00:00
2018-10-07 20:59:02 +00:00
import * as commands from './commands';
2019-12-30 19:21:25 +00:00
import { activateInlayHints } from './inlay_hints';
2019-12-30 19:16:07 +00:00
import { StatusDisplay } from './status_display';
2018-10-07 20:59:02 +00:00
import { Server } from './server';
2019-12-30 14:11:30 +00:00
import { Ctx } from './ctx';
2019-12-30 19:29:21 +00:00
import { activateHighlighting } from './highlighting';
2019-12-30 13:42:59 +00:00
let ctx!: Ctx;
2018-08-10 12:07:43 +00:00
export async function activate(context: vscode.ExtensionContext) {
2019-12-30 13:42:59 +00:00
ctx = new Ctx(context);
2019-12-30 19:07:04 +00:00
// Commands which invokes manually via command pallet, shortcut, etc.
2019-12-30 13:53:43 +00:00
ctx.registerCommand('analyzerStatus', commands.analyzerStatus);
ctx.registerCommand('collectGarbage', commands.collectGarbage);
2019-12-30 14:20:13 +00:00
ctx.registerCommand('matchingBrace', commands.matchingBrace);
2019-12-30 14:50:15 +00:00
ctx.registerCommand('joinLines', commands.joinLines);
2019-12-30 16:03:05 +00:00
ctx.registerCommand('parentModule', commands.parentModule);
2019-12-30 18:05:41 +00:00
ctx.registerCommand('syntaxTree', commands.syntaxTree);
2019-12-30 18:30:30 +00:00
ctx.registerCommand('expandMacro', commands.expandMacro);
2019-12-30 18:58:44 +00:00
ctx.registerCommand('run', commands.run);
2019-12-30 19:07:04 +00:00
// Internal commands which are invoked by the server.
ctx.registerCommand('runSingle', commands.runSingle);
ctx.registerCommand('showReferences', commands.showReferences);
ctx.registerCommand('applySourceChange', commands.applySourceChange);
2019-12-30 13:42:59 +00:00
2019-12-30 19:46:14 +00:00
if (ctx.config.enableEnhancedTyping) {
2019-12-30 15:43:34 +00:00
ctx.overrideCommand('type', commands.onEnter);
}
2018-08-10 18:13:39 +00:00
2019-12-30 19:46:14 +00:00
const watchStatus = new StatusDisplay(ctx.config.cargoWatchOptions.command);
2019-12-30 19:16:07 +00:00
ctx.pushCleanup(watchStatus);
2018-10-08 18:55:22 +00:00
// Notifications are events triggered by the language server
2019-12-30 18:05:41 +00:00
const allNotifications: [string, lc.GenericNotificationHandler][] = [
2019-12-30 16:03:05 +00:00
[
'$/progress',
params => watchStatus.handleProgressNotification(params),
],
];
2018-10-08 18:55:22 +00:00
2019-04-15 19:41:27 +00:00
const startServer = () => Server.start(allNotifications);
const reloadCommand = () => reloadServer(startServer);
vscode.commands.registerCommand('rust-analyzer.reload', reloadCommand);
2018-10-08 18:55:22 +00:00
// Start the language server, finally!
try {
await startServer();
} catch (e) {
vscode.window.showErrorMessage(e.message);
}
2019-07-23 13:38:21 +00:00
2019-12-30 22:12:33 +00:00
activateHighlighting(ctx);
2019-12-30 19:46:14 +00:00
if (ctx.config.displayInlayHints) {
2019-12-30 19:21:25 +00:00
activateInlayHints(ctx);
2019-07-23 13:38:21 +00:00
}
2018-08-17 16:54:08 +00:00
}
2018-08-10 12:07:43 +00:00
export function deactivate(): Thenable<void> {
2018-10-07 20:44:25 +00:00
if (!Server.client) {
2018-08-27 19:52:43 +00:00
return Promise.resolve();
2018-08-10 12:07:43 +00:00
}
2018-10-07 20:44:25 +00:00
return Server.client.stop();
2018-08-29 15:03:14 +00:00
}
2019-04-15 19:41:27 +00:00
async function reloadServer(startServer: () => Promise<void>) {
2019-04-15 19:41:27 +00:00
if (Server.client != null) {
vscode.window.showInformationMessage('Reloading rust-analyzer...');
await Server.client.stop();
await startServer();
2019-04-15 19:41:27 +00:00
}
2019-04-16 20:11:50 +00:00
}