From 71722c047f96cb754c958c52591ca53f2a9c4d3c Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Sun, 26 Aug 2018 12:51:45 +0300 Subject: Simple scope completion --- crates/libeditor/src/completion.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/libeditor/src') diff --git a/crates/libeditor/src/completion.rs b/crates/libeditor/src/completion.rs index 16c9ead74..aeed19559 100644 --- a/crates/libeditor/src/completion.rs +++ b/crates/libeditor/src/completion.rs @@ -14,7 +14,7 @@ use { #[derive(Debug)] pub struct CompletionItem { - name: String, + pub name: String, } pub fn scope_completion(file: &File, offset: TextUnit) -> Option> { -- cgit v1.2.3