aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/main_loop
diff options
context:
space:
mode:
authorEkaterina Babshukova <[email protected]>2019-10-15 17:25:57 +0100
committerEkaterina Babshukova <[email protected]>2019-10-22 21:47:31 +0100
commit93c179531b31786bfd50644b5f0c879afc798f7d (patch)
tree5f92adb558ace2ed54a1bdc273d7018b1c52a4c9 /crates/ra_lsp_server/src/main_loop
parent328be5721ad0d53d6d296fec08fbcc569634ecf7 (diff)
fix highlighting
Diffstat (limited to 'crates/ra_lsp_server/src/main_loop')
-rw-r--r--crates/ra_lsp_server/src/main_loop/handlers.rs1
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 ))