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 1e779a5 commit 82b8f26Copy full SHA for 82b8f26
Extension/src/LanguageServer/client.ts
@@ -1031,6 +1031,7 @@ export class DefaultClient implements Client {
1031
}
1032
1033
async promptSelectCompiler(isCommand: boolean): Promise<void> {
1034
+ secondPromptCounter = 0;
1035
if (compilerDefaults === undefined) {
1036
return;
1037
@@ -1053,7 +1054,7 @@ export class DefaultClient implements Client {
1053
1054
} else if (!isCommand && (compilerDefaults.compilerPath === undefined)) {
1055
this.showPrompt(selectCompiler, false);
1056
} else {
- this.handleCompilerQuickPick(false);
1057
+ this.handleCompilerQuickPick(isCommand);
1058
1059
1060
0 commit comments