diff options
Diffstat (limited to 'crates/ra_ide/src/completion.rs')
-rw-r--r-- | crates/ra_ide/src/completion.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/crates/ra_ide/src/completion.rs b/crates/ra_ide/src/completion.rs index cd0757be5..b683572fb 100644 --- a/crates/ra_ide/src/completion.rs +++ b/crates/ra_ide/src/completion.rs | |||
@@ -34,15 +34,15 @@ pub use crate::completion::completion_item::{ | |||
34 | }; | 34 | }; |
35 | 35 | ||
36 | #[derive(Clone, Debug, PartialEq, Eq)] | 36 | #[derive(Clone, Debug, PartialEq, Eq)] |
37 | pub struct CompletionOptions { | 37 | pub struct CompletionConfig { |
38 | pub enable_postfix_completions: bool, | 38 | pub enable_postfix_completions: bool, |
39 | pub add_call_parenthesis: bool, | 39 | pub add_call_parenthesis: bool, |
40 | pub add_call_argument_snippets: bool, | 40 | pub add_call_argument_snippets: bool, |
41 | } | 41 | } |
42 | 42 | ||
43 | impl Default for CompletionOptions { | 43 | impl Default for CompletionConfig { |
44 | fn default() -> Self { | 44 | fn default() -> Self { |
45 | CompletionOptions { | 45 | CompletionConfig { |
46 | enable_postfix_completions: true, | 46 | enable_postfix_completions: true, |
47 | add_call_parenthesis: true, | 47 | add_call_parenthesis: true, |
48 | add_call_argument_snippets: true, | 48 | add_call_argument_snippets: true, |
@@ -75,9 +75,9 @@ impl Default for CompletionOptions { | |||
75 | pub(crate) fn completions( | 75 | pub(crate) fn completions( |
76 | db: &RootDatabase, | 76 | db: &RootDatabase, |
77 | position: FilePosition, | 77 | position: FilePosition, |
78 | options: &CompletionOptions, | 78 | config: &CompletionConfig, |
79 | ) -> Option<Completions> { | 79 | ) -> Option<Completions> { |
80 | let ctx = CompletionContext::new(db, position, options)?; | 80 | let ctx = CompletionContext::new(db, position, config)?; |
81 | 81 | ||
82 | let mut acc = Completions::default(); | 82 | let mut acc = Completions::default(); |
83 | 83 | ||