You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constvalue: string|undefined=awaitvscode.window.showInformationMessage(localize("setCompiler.message","You do not have IntelliSense configured. Unless you set your own configurations, IntelliSense may not be functional."),buttonMessage);
920
-
if(value===buttonMessage){
921
-
this.handleCompilerQuickPick(true);
920
+
if(secondPromptCounter<2){
921
+
constvalue: string|undefined=awaitvscode.window.showInformationMessage(localize("setCompiler.message","You do not have IntelliSense configured. Unless you set your own configurations, IntelliSense may not be functional."),buttonMessage);
922
+
secondPromptCounter++;
923
+
if(value===buttonMessage){
924
+
this.handleCompilerQuickPick(true);
925
+
}
922
926
}
923
927
}
924
928
@@ -942,7 +946,6 @@ export class DefaultClient implements Client {
942
946
}
943
947
if(index===paths.length-1){
944
948
settings.defaultCompiler="";
945
-
this.showPrompt(selectCompiler);
946
949
}elseif(index===paths.length-2){
947
950
switch(os.platform()){
948
951
case'win32':
@@ -981,7 +984,7 @@ export class DefaultClient implements Client {
constvalue: string|undefined=awaitvscode.window.showInformationMessage(localize("selectCompiler.message","The compiler {0} was found on this computer. Do you want to configure it for IntelliSense?",compilerDefaults.compilerPath),confirmCompiler,selectCompiler);
987
+
constvalue: string|undefined=awaitvscode.window.showInformationMessage(localize("selectCompiler.message","The compiler {0} was found. Do you want to configure IntelliSense with this compiler?",compilerDefaults.compilerPath),confirmCompiler,selectCompiler);
0 commit comments