2018-08-10 15:07:43 +03:00
|
|
|
import * as vscode from 'vscode';
|
|
|
|
|
2018-10-07 22:59:02 +02:00
|
|
|
import * as commands from './commands';
|
2019-12-30 20:21:25 +01:00
|
|
|
import { activateInlayHints } from './inlay_hints';
|
2019-12-31 17:22:43 +01:00
|
|
|
import { activateStatusDisplay } from './status_display';
|
2019-12-30 15:11:30 +01:00
|
|
|
import { Ctx } from './ctx';
|
2019-12-30 20:29:21 +01:00
|
|
|
import { activateHighlighting } from './highlighting';
|
2019-12-30 14:42:59 +01:00
|
|
|
|
|
|
|
let ctx!: Ctx;
|
2018-08-10 15:07:43 +03:00
|
|
|
|
2019-12-08 14:41:44 +02:00
|
|
|
export async function activate(context: vscode.ExtensionContext) {
|
2019-12-30 14:42:59 +01:00
|
|
|
ctx = new Ctx(context);
|
2019-12-30 20:07:04 +01:00
|
|
|
|
|
|
|
// Commands which invokes manually via command pallet, shortcut, etc.
|
2019-12-30 14:53:43 +01:00
|
|
|
ctx.registerCommand('analyzerStatus', commands.analyzerStatus);
|
|
|
|
ctx.registerCommand('collectGarbage', commands.collectGarbage);
|
2019-12-30 15:20:13 +01:00
|
|
|
ctx.registerCommand('matchingBrace', commands.matchingBrace);
|
2019-12-30 15:50:15 +01:00
|
|
|
ctx.registerCommand('joinLines', commands.joinLines);
|
2019-12-30 17:03:05 +01:00
|
|
|
ctx.registerCommand('parentModule', commands.parentModule);
|
2019-12-30 19:05:41 +01:00
|
|
|
ctx.registerCommand('syntaxTree', commands.syntaxTree);
|
2019-12-30 19:30:30 +01:00
|
|
|
ctx.registerCommand('expandMacro', commands.expandMacro);
|
2019-12-30 19:58:44 +01:00
|
|
|
ctx.registerCommand('run', commands.run);
|
2019-12-31 18:14:00 +01:00
|
|
|
ctx.registerCommand('reload', commands.reload);
|
2019-12-30 20:07:04 +01:00
|
|
|
|
|
|
|
// Internal commands which are invoked by the server.
|
|
|
|
ctx.registerCommand('runSingle', commands.runSingle);
|
|
|
|
ctx.registerCommand('showReferences', commands.showReferences);
|
2019-12-30 23:45:50 +01:00
|
|
|
ctx.registerCommand('applySourceChange', commands.applySourceChange);
|
2020-01-12 00:40:36 +02:00
|
|
|
ctx.registerCommand('selectAndApplySourceChange', commands.selectAndApplySourceChange);
|
2019-12-30 14:42:59 +01:00
|
|
|
|
2019-12-30 20:46:14 +01:00
|
|
|
if (ctx.config.enableEnhancedTyping) {
|
2019-12-30 16:43:34 +01:00
|
|
|
ctx.overrideCommand('type', commands.onEnter);
|
2019-02-07 12:37:36 +02:00
|
|
|
}
|
2019-12-31 18:14:00 +01:00
|
|
|
activateStatusDisplay(ctx);
|
2019-12-31 21:13:30 +01:00
|
|
|
|
2019-12-31 18:14:00 +01:00
|
|
|
activateHighlighting(ctx);
|
2019-12-31 21:13:30 +01:00
|
|
|
// Note: we try to start the server before we activate type hints so that it
|
|
|
|
// registers its `onDidChangeDocument` handler before us.
|
|
|
|
//
|
|
|
|
// This a horribly, horribly wrong way to deal with this problem.
|
|
|
|
try {
|
|
|
|
await ctx.restartServer();
|
|
|
|
} catch (e) {
|
|
|
|
vscode.window.showErrorMessage(e.message);
|
|
|
|
}
|
2019-12-31 18:14:00 +01:00
|
|
|
activateInlayHints(ctx);
|
2018-08-17 19:54:08 +03:00
|
|
|
}
|
|
|
|
|
2019-12-31 18:14:00 +01:00
|
|
|
export async function deactivate() {
|
|
|
|
await ctx?.client?.stop();
|
2019-04-16 22:11:50 +02:00
|
|
|
}
|