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 6c9c959 commit d1c6aa0Copy full SHA for d1c6aa0
src/lsptoolshost/commands.ts
@@ -115,7 +115,7 @@ async function completionComplexEdit(
115
let editor: vscode.TextEditor | undefined = undefined;
116
if (isSnippetString || newOffset >= 0) {
117
editor = await vscode.window.showTextDocument(document);
118
- if (editor == undefined) {
+ if (editor === undefined) {
119
outputAndThrow(outputChannel, `${componentName} Editor unavailable for document with path: '${uriStr}'`);
120
}
121
0 commit comments