diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-05-27 02:22:28 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-27 02:22:28 +0100 |
commit | 12d46f835e5619f1731b3697c46065f4b737758c (patch) | |
tree | e8750a920f92bbbd4fe3cb23be585eed7ad92b24 /crates/ide_completion/src/completions/snippet.rs | |
parent | d6ed315806e23d9ebda96ecfbe13da2154a2289c (diff) | |
parent | 6ec4ea8d9eb9ad6ad8b91968bde09121b5b791a0 (diff) |
Merge #9018
9018: Collapse more CompletionContext booleans into enums r=Veykril a=Veykril
bors r+
Co-authored-by: Lukas Wirth <[email protected]>
Diffstat (limited to 'crates/ide_completion/src/completions/snippet.rs')
-rw-r--r-- | crates/ide_completion/src/completions/snippet.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_completion/src/completions/snippet.rs b/crates/ide_completion/src/completions/snippet.rs index 14cfb61de..defc25b00 100644 --- a/crates/ide_completion/src/completions/snippet.rs +++ b/crates/ide_completion/src/completions/snippet.rs | |||
@@ -14,7 +14,7 @@ fn snippet(ctx: &CompletionContext, cap: SnippetCap, label: &str, snippet: &str) | |||
14 | } | 14 | } |
15 | 15 | ||
16 | pub(crate) fn complete_expr_snippet(acc: &mut Completions, ctx: &CompletionContext) { | 16 | pub(crate) fn complete_expr_snippet(acc: &mut Completions, ctx: &CompletionContext) { |
17 | if !(ctx.is_trivial_path && ctx.function_syntax.is_some()) { | 17 | if !(ctx.is_trivial_path && ctx.function_def.is_some()) { |
18 | return; | 18 | return; |
19 | } | 19 | } |
20 | let cap = match ctx.config.snippet_cap { | 20 | let cap = match ctx.config.snippet_cap { |