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 60c4434 commit db1cfdaCopy full SHA for db1cfda
Extension/src/LanguageServer/settingsTracker.ts
@@ -104,7 +104,8 @@ export class SettingsTracker {
104
}
105
const curEnum: any[] = curSetting["enum"];
106
if (curEnum && curEnum.indexOf(val) === -1
107
- && (key !== "loggingLevel" || util.getNumericLoggingLevel(val) === -1)) {
+ && (key !== "loggingLevel" || util.getNumericLoggingLevel(val) === -1)
108
+ && (key !== "copilotHover" || val !== "enabled")) {
109
return "<invalid>";
110
111
return val;
0 commit comments