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
this.isSupported=false;// Running on an OS we don't support yet.
1207
-
if(!failureMessageShown){
1208
-
failureMessageShown=true;
1209
-
letadditionalInfo: string;
1210
-
if(err.code==="EPERM"){
1211
-
additionalInfo=localize('check.permissions',"EPERM: Check permissions for '{0}'",getLanguageServerFileName());
1212
-
}else{
1213
-
additionalInfo=String(err);
1214
-
}
1215
-
voidvscode.window.showErrorMessage(localize("unable.to.start","Unable to start the C/C++ language server. IntelliSense features will be disabled. Error: {0}",additionalInfo));
this.isSupported=false;// Running on an OS we don't support yet.
1212
+
if(!failureMessageShown){
1213
+
failureMessageShown=true;
1214
+
letadditionalInfo: string;
1215
+
if(err.code==="EPERM"){
1216
+
additionalInfo=localize('check.permissions',"EPERM: Check permissions for '{0}'",getLanguageServerFileName());
1217
+
}else{
1218
+
additionalInfo=String(err);
1222
1219
}
1223
-
},logAndReturn.undefined);
1220
+
voidvscode.window.showErrorMessage(localize("unable.to.start","Unable to start the C/C++ language server. IntelliSense features will be disabled. Error: {0}",additionalInfo));
1221
+
}
1224
1222
}
1225
1223
}
1226
1224
@@ -1466,7 +1464,7 @@ export class DefaultClient implements Client {
0 commit comments