aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-12-21 23:02:47 +0000
committerAleksey Kladov <[email protected]>2018-12-21 23:03:18 +0000
commit238b52358d0d6109c89d1288b12bfa0aa71790de (patch)
tree178cdc9bf5b9b06df8459e1419e29eee70ccfe9c /crates/ra_lsp_server
parentf1f2804c71ee997e36904dea72911104b2e2375b (diff)
more icons
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r--crates/ra_lsp_server/src/conv.rs15
1 files changed, 14 insertions, 1 deletions
diff --git a/crates/ra_lsp_server/src/conv.rs b/crates/ra_lsp_server/src/conv.rs
index 973e0915e..6f770ec69 100644
--- a/crates/ra_lsp_server/src/conv.rs
+++ b/crates/ra_lsp_server/src/conv.rs
@@ -2,7 +2,7 @@ use languageserver_types::{
2 self, Location, Position, Range, SymbolKind, TextDocumentEdit, TextDocumentIdentifier, 2 self, Location, Position, Range, SymbolKind, TextDocumentEdit, TextDocumentIdentifier,
3 TextDocumentItem, TextDocumentPositionParams, Url, VersionedTextDocumentIdentifier, InsertTextFormat, 3 TextDocumentItem, TextDocumentPositionParams, Url, VersionedTextDocumentIdentifier, InsertTextFormat,
4}; 4};
5use ra_analysis::{FileId, FileSystemEdit, SourceChange, SourceFileEdit, FilePosition, CompletionItem, InsertText}; 5use ra_analysis::{FileId, FileSystemEdit, SourceChange, SourceFileEdit, FilePosition, CompletionItem, CompletionItemKind, InsertText};
6use ra_editor::{LineCol, LineIndex}; 6use ra_editor::{LineCol, LineIndex};
7use ra_text_edit::{AtomTextEdit, TextEdit}; 7use ra_text_edit::{AtomTextEdit, TextEdit};
8use ra_syntax::{SyntaxKind, TextRange, TextUnit}; 8use ra_syntax::{SyntaxKind, TextRange, TextUnit};
@@ -45,6 +45,18 @@ impl Conv for SyntaxKind {
45 } 45 }
46} 46}
47 47
48impl Conv for CompletionItemKind {
49 type Output = ::languageserver_types::CompletionItemKind;
50
51 fn conv(self) -> <Self as Conv>::Output {
52 use ::languageserver_types::CompletionItemKind::*;
53 match self {
54 CompletionItemKind::Keyword => Keyword,
55 CompletionItemKind::Snippet => Snippet,
56 }
57 }
58}
59
48impl Conv for CompletionItem { 60impl Conv for CompletionItem {
49 type Output = ::languageserver_types::CompletionItem; 61 type Output = ::languageserver_types::CompletionItem;
50 62
@@ -52,6 +64,7 @@ impl Conv for CompletionItem {
52 let mut res = ::languageserver_types::CompletionItem { 64 let mut res = ::languageserver_types::CompletionItem {
53 label: self.label().to_string(), 65 label: self.label().to_string(),
54 filter_text: Some(self.lookup().to_string()), 66 filter_text: Some(self.lookup().to_string()),
67 kind: self.kind().map(|it| it.conv()),
55 ..Default::default() 68 ..Default::default()
56 }; 69 };
57 match self.insert_text() { 70 match self.insert_text() {