diff options
Diffstat (limited to 'editors/code')
-rw-r--r-- | editors/code/src/commands/runnables.ts | 2 |
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!"); |