aboutsummaryrefslogtreecommitdiff
path: root/crates/completion/src/item.rs
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2020-09-18 21:40:11 +0100
committerKirill Bulatov <[email protected]>2020-11-16 19:19:05 +0000
commitf62e8616c879255e70052ae35ce7f98bffedac11 (patch)
treef1a21bebdd22483a1a503861bbe55b77fa1d2b37 /crates/completion/src/item.rs
parent0a658c4a973d934d622957a6fb03916271496385 (diff)
Add imports in auto completion
Diffstat (limited to 'crates/completion/src/item.rs')
-rw-r--r--crates/completion/src/item.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/completion/src/item.rs b/crates/completion/src/item.rs
index 6d1d085f4..f23913935 100644
--- a/crates/completion/src/item.rs
+++ b/crates/completion/src/item.rs
@@ -31,6 +31,7 @@ pub struct CompletionItem {
31 /// 31 ///
32 /// Typically, replaces `source_range` with new identifier. 32 /// Typically, replaces `source_range` with new identifier.
33 text_edit: TextEdit, 33 text_edit: TextEdit,
34
34 insert_text_format: InsertTextFormat, 35 insert_text_format: InsertTextFormat,
35 36
36 /// What item (struct, function, etc) are we completing. 37 /// What item (struct, function, etc) are we completing.