diff options
Diffstat (limited to 'crates/ide_completion/src')
-rw-r--r-- | crates/ide_completion/src/completions/attribute.rs | 3 | ||||
-rw-r--r-- | crates/ide_completion/src/completions/keyword.rs | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/crates/ide_completion/src/completions/attribute.rs b/crates/ide_completion/src/completions/attribute.rs index 9780d01ae..78fc30e16 100644 --- a/crates/ide_completion/src/completions/attribute.rs +++ b/crates/ide_completion/src/completions/attribute.rs | |||
@@ -788,13 +788,13 @@ mod tests { | |||
788 | at target_feature = "…" | 788 | at target_feature = "…" |
789 | at test | 789 | at test |
790 | at track_caller | 790 | at track_caller |
791 | kw return | ||
792 | "#]], | 791 | "#]], |
793 | ); | 792 | ); |
794 | } | 793 | } |
795 | 794 | ||
796 | #[test] | 795 | #[test] |
797 | fn complete_attribute_on_expr() { | 796 | fn complete_attribute_on_expr() { |
797 | cov_mark::check!(no_keyword_completion_in_attr_of_expr); | ||
798 | check( | 798 | check( |
799 | r#"fn main() { #[$0] foo() }"#, | 799 | r#"fn main() { #[$0] foo() }"#, |
800 | expect![[r#" | 800 | expect![[r#" |
@@ -804,7 +804,6 @@ mod tests { | |||
804 | at deny(…) | 804 | at deny(…) |
805 | at forbid(…) | 805 | at forbid(…) |
806 | at warn(…) | 806 | at warn(…) |
807 | kw return | ||
808 | "#]], | 807 | "#]], |
809 | ); | 808 | ); |
810 | } | 809 | } |
diff --git a/crates/ide_completion/src/completions/keyword.rs b/crates/ide_completion/src/completions/keyword.rs index c99fdef05..07541c79c 100644 --- a/crates/ide_completion/src/completions/keyword.rs +++ b/crates/ide_completion/src/completions/keyword.rs | |||
@@ -48,6 +48,10 @@ pub(crate) fn complete_expr_keyword(acc: &mut Completions, ctx: &CompletionConte | |||
48 | cov_mark::hit!(no_keyword_completion_in_record_lit); | 48 | cov_mark::hit!(no_keyword_completion_in_record_lit); |
49 | return; | 49 | return; |
50 | } | 50 | } |
51 | if ctx.attribute_under_caret.is_some() { | ||
52 | cov_mark::hit!(no_keyword_completion_in_attr_of_expr); | ||
53 | return; | ||
54 | } | ||
51 | 55 | ||
52 | // Suggest .await syntax for types that implement Future trait | 56 | // Suggest .await syntax for types that implement Future trait |
53 | if let Some(receiver) = ctx.dot_receiver() { | 57 | if let Some(receiver) = ctx.dot_receiver() { |