diff options
Diffstat (limited to 'editors/code/src')
-rw-r--r-- | editors/code/src/inlay_hints.ts | 1 | ||||
-rw-r--r-- | editors/code/src/lsp_ext.ts | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/editors/code/src/inlay_hints.ts b/editors/code/src/inlay_hints.ts index 7b481fc72..30ade9b98 100644 --- a/editors/code/src/inlay_hints.ts +++ b/editors/code/src/inlay_hints.ts | |||
@@ -111,7 +111,6 @@ class HintsUpdater implements Disposable { | |||
111 | } | 111 | } |
112 | 112 | ||
113 | syncCacheAndRenderHints() { | 113 | syncCacheAndRenderHints() { |
114 | // FIXME: make inlayHints request pass an array of files? | ||
115 | this.sourceFiles.forEach((file, uri) => this.fetchHints(file).then(hints => { | 114 | this.sourceFiles.forEach((file, uri) => this.fetchHints(file).then(hints => { |
116 | if (!hints) return; | 115 | if (!hints) return; |
117 | 116 | ||
diff --git a/editors/code/src/lsp_ext.ts b/editors/code/src/lsp_ext.ts index 8663737a6..f280bba3d 100644 --- a/editors/code/src/lsp_ext.ts +++ b/editors/code/src/lsp_ext.ts | |||
@@ -1,5 +1,5 @@ | |||
1 | /** | 1 | /** |
2 | * This file mirrors `crates/rust-analyzer/src/req.rs` declarations. | 2 | * This file mirrors `crates/rust-analyzer/src/lsp_ext.rs` declarations. |
3 | */ | 3 | */ |
4 | 4 | ||
5 | import * as lc from "vscode-languageclient"; | 5 | import * as lc from "vscode-languageclient"; |