Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/src/run.ts')
| -rw-r--r-- | editors/code/src/run.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/code/src/run.ts b/editors/code/src/run.ts index 22e5eda682..100c0fe2d8 100644 --- a/editors/code/src/run.ts +++ b/editors/code/src/run.ts @@ -89,12 +89,14 @@ export async function selectRunnable( export class RunnableQuickPick implements vscode.QuickPickItem { public label: string; + public cargoWorkspaceRoot?: string; public description?: string | undefined; public detail?: string | undefined; public picked?: boolean | undefined; constructor(public runnable: ra.Runnable) { this.label = runnable.label; + this.cargoWorkspaceRoot = runnable.args.workspaceRoot; } } |