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 8105601 commit 4067dbfCopy full SHA for 4067dbf
Extension/src/LanguageServer/client.ts
@@ -1316,8 +1316,7 @@ export class DefaultClient implements Client {
1316
1317
const settings: CppSettings = new CppSettings();
1318
this.currentCopilotHoverEnabled = new PersistentWorkspaceState<string>("cpp.copilotHover", settings.copilotHover);
1319
- if (settings.copilotHover === "enabled" ||
1320
- (settings.copilotHover === "default" && await telemetry.isFlightEnabled("CppCopilotHover"))) {
+ if (settings.copilotHover !== "disabled") {
1321
this.copilotHoverProvider = new CopilotHoverProvider(this);
1322
this.disposables.push(vscode.languages.registerHoverProvider(util.documentSelector, this.copilotHoverProvider));
1323
}
0 commit comments