Skip to content

Commit 9742465

Browse files
committed
fix formatting
1 parent c31c4ab commit 9742465

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Extension/src/LanguageServer/extension.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,9 @@ export async function getIncludes(maxDepth: number): Promise<any> {
13851385
// This uses several workarounds for interacting with the hover feature.
13861386
// A proposal for dynamic hover content would help, such as the one here (https://github.com/microsoft/vscode/issues/195394)
13871387
async function onCopilotHover(): Promise<void> {
1388-
if (!vscode.window.activeTextEditor) { return; }
1388+
if (!vscode.window.activeTextEditor) {
1389+
return;
1390+
}
13891391
// Check if the user has access to vscode language model.
13901392
const vscodelm = (vscode as any).lm;
13911393
if (!vscodelm) { return; }

0 commit comments

Comments
 (0)