diff options
author | Ekaterina Babshukova <[email protected]> | 2019-10-15 17:25:57 +0100 |
---|---|---|
committer | Ekaterina Babshukova <[email protected]> | 2019-10-22 21:47:31 +0100 |
commit | 93c179531b31786bfd50644b5f0c879afc798f7d (patch) | |
tree | 5f92adb558ace2ed54a1bdc273d7018b1c52a4c9 /crates/ra_lsp_server | |
parent | 328be5721ad0d53d6d296fec08fbcc569634ecf7 (diff) |
fix highlighting
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/handlers.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index e08e0dbae..307082865 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs | |||
@@ -751,6 +751,7 @@ pub fn handle_document_highlight( | |||
751 | 751 | ||
752 | Ok(Some( | 752 | Ok(Some( |
753 | refs.into_iter() | 753 | refs.into_iter() |
754 | .filter(|r| r.file_id == file_id) | ||
754 | .map(|r| DocumentHighlight { range: r.range.conv_with(&line_index), kind: None }) | 755 | .map(|r| DocumentHighlight { range: r.range.conv_with(&line_index), kind: None }) |
755 | .collect(), | 756 | .collect(), |
756 | )) | 757 | )) |