We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72c0f44 commit 7b1c3d3Copy full SHA for 7b1c3d3
src/vs/workbench/contrib/debug/browser/debugService.ts
@@ -954,7 +954,9 @@ export class DebugService implements IDebugService {
954
try {
955
return await dbg.substituteVariables(folder, config);
956
} catch (err) {
957
- this.showError(err.message, undefined, !!launch?.getConfiguration(config.name));
+ if (err.message !== errors.canceledName) {
958
+ this.showError(err.message, undefined, !!launch?.getConfiguration(config.name));
959
+ }
960
return undefined; // bail out
961
}
962
0 commit comments