aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-05-17 18:38:50 +0100
committervsrs <[email protected]>2020-05-17 18:38:50 +0100
commit3d445256fe56f4a7ead64514fb57b79079973d84 (patch)
treeaabd84a5c3abe87bde1e09215b19c80055258e4c /editors
parentdec2f3fa657a2700f9db1962891e7be71c299543 (diff)
code formatting
Diffstat (limited to 'editors')
-rw-r--r--editors/code/src/commands/runnables.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/runnables.ts b/editors/code/src/commands/runnables.ts
index a408021e7..0bd30fb07 100644
--- a/editors/code/src/commands/runnables.ts
+++ b/editors/code/src/commands/runnables.ts
@@ -40,7 +40,7 @@ async function selectRunnable(ctx: Ctx, prevRunnable?: RunnableQuickPick, debugg
40 items.push(new RunnableQuickPick(r)); 40 items.push(new RunnableQuickPick(r));
41 } 41 }
42 42
43 if( items.length === 0 ) { 43 if (items.length === 0) {
44 // it is the debug case, run always has at least 'cargo check ...' 44 // it is the debug case, run always has at least 'cargo check ...'
45 // see crates\rust-analyzer\src\main_loop\handlers.rs, handle_runnables 45 // see crates\rust-analyzer\src\main_loop\handlers.rs, handle_runnables
46 vscode.window.showErrorMessage("There's no debug target!"); 46 vscode.window.showErrorMessage("There's no debug target!");