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 0622ade commit 24c4f7fCopy full SHA for 24c4f7f
Extension/src/LanguageServer/client.ts
@@ -633,7 +633,7 @@ class DefaultClient implements Client {
633
};
634
let textEditorDecoration = vscode.window.createTextEditorDecorationType(renderOptions);
635
636
- let editor = vscode.window.visibleTextEditors.find(e => e.document.uri.toString() == params.uri); // document.uri == params.uri
+ let editor = vscode.window.visibleTextEditors.find(e => e.document.uri.toString() == params.uri); // TODO change to document.uri == params.uri
637
editor.setDecorations(textEditorDecoration, params.ranges);
638
}
639
0 commit comments