Add **Copy Run Command Line** command for vscode

This is useful when you want to, e.g., run a specific test in a terminal
with `--release`.
This commit is contained in:
Aleksey Kladov 2021-02-10 14:28:13 +03:00
parent 36465b34b3
commit 97166e2ad9
4 changed files with 31 additions and 8 deletions

View file

@ -108,6 +108,7 @@ async function tryActivate(context: vscode.ExtensionContext) {
ctx.registerCommand('viewHir', commands.viewHir);
ctx.registerCommand('expandMacro', commands.expandMacro);
ctx.registerCommand('run', commands.run);
ctx.registerCommand('copyRunCommandLine', commands.copyRunCommandLine);
ctx.registerCommand('debug', commands.debug);
ctx.registerCommand('newDebugConfig', commands.newDebugConfig);
ctx.registerCommand('openDocs', commands.openDocs);