We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43a47ae commit f5efd06Copy full SHA for f5efd06
vscode-ext/src/CaesarClient.ts
@@ -419,7 +419,13 @@ export class CaesarClient {
419
return;
420
}
421
const command = '"' + executable.command.replace(/(["'$`\\])/g, '\\$1') + '"';
422
- const args = executable.args!.filter(arg => !["--language-server", "--debug"].includes(arg));
+ const args = executable.args!.filter(arg => !["--debug"].includes(arg));
423
+ { // replace lsp by verify
424
+ const index = args.indexOf('lsp');
425
+ if (index !== -1) {
426
+ args[index] = 'verify';
427
+ }
428
429
let line = `${command} ${args.join(" ")}`;
430
let cwd = executable.options && executable.options.cwd;
431
if (cwd !== undefined) {
0 commit comments