Preliminary refactoring of cargo.ts

This commit is contained in:
veetaha 2020-05-06 01:22:02 +03:00 committed by Craig Disselkoen
parent 3e603a8fdd
commit a78dd06951
2 changed files with 19 additions and 33 deletions

View file

@ -119,8 +119,11 @@ export function debugSingle(ctx: Ctx): Cmd {
}
if (!debugEngine) {
vscode.window.showErrorMessage(`Install [CodeLLDB](https://marketplace.visualstudio.com/items?itemName=${lldbId})`
+ ` or [MS C++ tools](https://marketplace.visualstudio.com/items?itemName=${cpptoolsId}) extension for debugging.`);
vscode.window.showErrorMessage(
`Install [CodeLLDB](https://marketplace.visualstudio.com/items?itemName=${lldbId}) ` +
`or [MS C++ tools](https://marketplace.visualstudio.com/items?itemName=${cpptoolsId}) ` +
`extension for debugging.`
);
return;
}