aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/main.ts
diff options
context:
space:
mode:
authorJonas Schievink <[email protected]>2020-07-07 11:10:14 +0100
committerJonas Schievink <[email protected]>2020-07-07 11:10:14 +0100
commitf44c4b61e131284287b24dea6da6324cbe9cb252 (patch)
treed05b6d48374da0097d359b16115da959b57048ce /editors/code/src/main.ts
parent0f5d62a3f3b33edadea50ea93c725ac36460c0d7 (diff)
Add a command to compute memory usage statistics
Diffstat (limited to 'editors/code/src/main.ts')
-rw-r--r--editors/code/src/main.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/editors/code/src/main.ts b/editors/code/src/main.ts
index 4b990afa1..eda95ae5c 100644
--- a/editors/code/src/main.ts
+++ b/editors/code/src/main.ts
@@ -96,6 +96,7 @@ async function tryActivate(context: vscode.ExtensionContext) {
96 }); 96 });
97 97
98 ctx.registerCommand('analyzerStatus', commands.analyzerStatus); 98 ctx.registerCommand('analyzerStatus', commands.analyzerStatus);
99 ctx.registerCommand('memoryUsage', commands.memoryUsage);
99 ctx.registerCommand('reloadWorkspace', commands.reloadWorkspace); 100 ctx.registerCommand('reloadWorkspace', commands.reloadWorkspace);
100 ctx.registerCommand('matchingBrace', commands.matchingBrace); 101 ctx.registerCommand('matchingBrace', commands.matchingBrace);
101 ctx.registerCommand('joinLines', commands.joinLines); 102 ctx.registerCommand('joinLines', commands.joinLines);