aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/main.ts
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-02-04 22:13:46 +0000
committerVeetaha <[email protected]>2020-02-04 22:13:46 +0000
commitb89b22e43eb7e821674e0022f4061442b9e29394 (patch)
tree05ca0a665569aad393bd6c83cc9bcb0933d5085f /editors/code/src/main.ts
parentc9e1aab8803264a40023aa09600b0a8fab8e00ff (diff)
vscode: yet another refactor commit
Diffstat (limited to 'editors/code/src/main.ts')
-rw-r--r--editors/code/src/main.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index efc31b2e2..5efce41f4 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -6,7 +6,7 @@ import { activateStatusDisplay } from './status_display';
6import { Ctx } from './ctx'; 6import { Ctx } from './ctx';
7import { activateHighlighting } from './highlighting'; 7import { activateHighlighting } from './highlighting';
8 8
9let ctx!: Ctx; 9let ctx: Ctx | undefined;
10 10
11export async function activate(context: vscode.ExtensionContext) { 11export async function activate(context: vscode.ExtensionContext) {
12 ctx = new Ctx(context); 12 ctx = new Ctx(context);