]> git.lizzy.rs Git - rust.git/blob - crates/completion/src/config.rs
30577dc11ea8ff4f8c50646d0e9cae123e68fe31
[rust.git] / crates / completion / src / config.rs
1 //! Settings for tweaking completion.
2 //!
3 //! The fun thing here is `SnippetCap` -- this type can only be created in this
4 //! module, and we use to statically check that we only produce snippet
5 //! completions if we are allowed to.
6
7 use ide_db::helpers::insert_use::MergeBehavior;
8 use rustc_hash::FxHashSet;
9
10 #[derive(Clone, Debug, PartialEq, Eq)]
11 pub struct CompletionConfig {
12     pub enable_postfix_completions: bool,
13     pub enable_autoimport_completions: bool,
14     pub add_call_parenthesis: bool,
15     pub add_call_argument_snippets: bool,
16     pub snippet_cap: Option<SnippetCap>,
17     pub merge: Option<MergeBehavior>,
18     /// A set of capabilities, enabled on the client and supported on the server.
19     pub active_resolve_capabilities: FxHashSet<CompletionResolveCapability>,
20 }
21
22 /// A resolve capability, supported on the server.
23 /// If the client registers any completion resolve capabilities,
24 /// the server is able to render completion items' corresponding fields later,
25 /// not during an initial completion item request.
26 /// See https://github.com/rust-analyzer/rust-analyzer/issues/6366 for more details.
27 #[derive(Debug, Copy, Clone, Hash, Eq, PartialEq)]
28 pub enum CompletionResolveCapability {
29     Documentation,
30     Detail,
31     AdditionalTextEdits,
32 }
33
34 impl CompletionConfig {
35     pub fn allow_snippets(&mut self, yes: bool) {
36         self.snippet_cap = if yes { Some(SnippetCap { _private: () }) } else { None }
37     }
38
39     /// Whether the completions' additional edits are calculated when sending an initional completions list
40     /// or later, in a separate resolve request.
41     pub fn resolve_additional_edits_lazily(&self) -> bool {
42         self.active_resolve_capabilities.contains(&CompletionResolveCapability::AdditionalTextEdits)
43     }
44 }
45
46 #[derive(Clone, Copy, Debug, PartialEq, Eq)]
47 pub struct SnippetCap {
48     _private: (),
49 }
50
51 impl Default for CompletionConfig {
52     fn default() -> Self {
53         CompletionConfig {
54             enable_postfix_completions: true,
55             enable_autoimport_completions: true,
56             add_call_parenthesis: true,
57             add_call_argument_snippets: true,
58             snippet_cap: Some(SnippetCap { _private: () }),
59             merge: Some(MergeBehavior::Full),
60             active_resolve_capabilities: FxHashSet::default(),
61         }
62     }
63 }