diff options
author | Veetaha <[email protected]> | 2020-02-02 19:38:49 +0000 |
---|---|---|
committer | Veetaha <[email protected]> | 2020-02-02 19:38:49 +0000 |
commit | 4bf5f595604c2c3fa0ca981a843d04a8732dabf9 (patch) | |
tree | de94306fb8dab50dbebc4bd02c4b9027fd6e29b2 | |
parent | 81847524702dd7cb1eeae25a53444b325295b129 (diff) |
vscode: fix type
-rw-r--r-- | editors/code/src/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts index de45f660b..6813c3c4c 100644 --- a/editors/code/src/main.ts +++ b/editors/code/src/main.ts | |||
@@ -11,7 +11,7 @@ let ctx!: Ctx; | |||
11 | export async function activate(context: vscode.ExtensionContext) { | 11 | export async function activate(context: vscode.ExtensionContext) { |
12 | ctx = new Ctx(context); | 12 | ctx = new Ctx(context); |
13 | 13 | ||
14 | // Commands which invokes manually via command pallete, shortcut, etc. | 14 | // Commands which invokes manually via command palette, shortcut, etc. |
15 | ctx.registerCommand('analyzerStatus', commands.analyzerStatus); | 15 | ctx.registerCommand('analyzerStatus', commands.analyzerStatus); |
16 | ctx.registerCommand('collectGarbage', commands.collectGarbage); | 16 | ctx.registerCommand('collectGarbage', commands.collectGarbage); |
17 | ctx.registerCommand('matchingBrace', commands.matchingBrace); | 17 | ctx.registerCommand('matchingBrace', commands.matchingBrace); |