]> git.lizzy.rs Git - rust.git/blob - src/tools/rust-analyzer/crates/ide-completion/src/config.rs
Auto merge of #101168 - jachris:dataflow-const-prop, r=oli-obk
[rust.git] / src / tools / rust-analyzer / crates / ide-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::{imports::insert_use::InsertUseConfig, SnippetCap};
8
9 use crate::snippet::Snippet;
10
11 #[derive(Clone, Debug, PartialEq, Eq)]
12 pub struct CompletionConfig {
13     pub enable_postfix_completions: bool,
14     pub enable_imports_on_the_fly: bool,
15     pub enable_self_on_the_fly: bool,
16     pub enable_private_editable: bool,
17     pub callable: Option<CallableSnippets>,
18     pub snippet_cap: Option<SnippetCap>,
19     pub insert_use: InsertUseConfig,
20     pub prefer_no_std: bool,
21     pub snippets: Vec<Snippet>,
22 }
23
24 #[derive(Clone, Debug, PartialEq, Eq)]
25 pub enum CallableSnippets {
26     FillArguments,
27     AddParentheses,
28 }
29
30 impl CompletionConfig {
31     pub fn postfix_snippets(&self) -> impl Iterator<Item = (&str, &Snippet)> {
32         self.snippets
33             .iter()
34             .flat_map(|snip| snip.postfix_triggers.iter().map(move |trigger| (&**trigger, snip)))
35     }
36
37     pub fn prefix_snippets(&self) -> impl Iterator<Item = (&str, &Snippet)> {
38         self.snippets
39             .iter()
40             .flat_map(|snip| snip.prefix_triggers.iter().map(move |trigger| (&**trigger, snip)))
41     }
42 }