Skip to content

Commit f0c3806

Browse files
committed
fix: lint error.
1 parent 7127526 commit f0c3806

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vscode-lean4/src/infoview.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ export class InfoProvider implements Disposable {
380380
editor.revealRange(selection, TextEditorRevealType.InCenterIfOutsideViewport);
381381
editor.selection = new Selection(selection.start, selection.end);
382382
// ensure the text document has the keyboard focus.
383-
window.showTextDocument(editor.document, { viewColumn: editor.viewColumn, preserveFocus: false });
383+
void window.showTextDocument(editor.document, { viewColumn: editor.viewColumn, preserveFocus: false });
384384
}
385385
}
386386

0 commit comments

Comments
 (0)