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 c31c4ab commit 9742465Copy full SHA for 9742465
Extension/src/LanguageServer/extension.ts
@@ -1385,7 +1385,9 @@ export async function getIncludes(maxDepth: number): Promise<any> {
1385
// This uses several workarounds for interacting with the hover feature.
1386
// A proposal for dynamic hover content would help, such as the one here (https://github.com/microsoft/vscode/issues/195394)
1387
async function onCopilotHover(): Promise<void> {
1388
- if (!vscode.window.activeTextEditor) { return; }
+ if (!vscode.window.activeTextEditor) {
1389
+ return;
1390
+ }
1391
// Check if the user has access to vscode language model.
1392
const vscodelm = (vscode as any).lm;
1393
if (!vscodelm) { return; }
0 commit comments