@@ -79,7 +79,7 @@ fn add_keywords(acc: &mut Completions, ctx: &CompletionContext<'_>, kind: Option
79
79
let in_trait = matches ! ( kind, Some ( ItemListKind :: Trait ) ) ;
80
80
let in_trait_impl = matches ! ( kind, Some ( ItemListKind :: TraitImpl ( _) ) ) ;
81
81
let in_inherent_impl = matches ! ( kind, Some ( ItemListKind :: Impl ) ) ;
82
- let no_qualifiers = ctx. qualifier_ctx . vis_node . is_none ( ) ;
82
+ let no_vis_qualifiers = ctx. qualifier_ctx . vis_node . is_none ( ) ;
83
83
let in_block = kind. is_none ( ) ;
84
84
85
85
if !in_trait_impl {
@@ -89,7 +89,7 @@ fn add_keywords(acc: &mut Completions, ctx: &CompletionContext<'_>, kind: Option
89
89
}
90
90
if in_item_list {
91
91
add_keyword ( "trait" , "trait $1 {\n $0\n }" ) ;
92
- if no_qualifiers {
92
+ if no_vis_qualifiers {
93
93
add_keyword ( "impl" , "impl $1 {\n $0\n }" ) ;
94
94
}
95
95
}
@@ -104,15 +104,15 @@ fn add_keywords(acc: &mut Completions, ctx: &CompletionContext<'_>, kind: Option
104
104
add_keyword ( "trait" , "trait $1 {\n $0\n }" ) ;
105
105
add_keyword ( "union" , "union $1 {\n $0\n }" ) ;
106
106
add_keyword ( "use" , "use $0" ) ;
107
- if no_qualifiers {
107
+ if no_vis_qualifiers {
108
108
add_keyword ( "impl" , "impl $1 {\n $0\n }" ) ;
109
109
}
110
110
}
111
111
112
- if !in_trait && !in_block && no_qualifiers {
113
- add_keyword ( "pub(crate)" , "pub(crate)" ) ;
114
- add_keyword ( "pub(super)" , "pub(super)" ) ;
115
- add_keyword ( "pub" , "pub" ) ;
112
+ if !in_trait && !in_block && no_vis_qualifiers {
113
+ add_keyword ( "pub(crate)" , "pub(crate) $0 " ) ;
114
+ add_keyword ( "pub(super)" , "pub(super) $0 " ) ;
115
+ add_keyword ( "pub" , "pub $0 " ) ;
116
116
}
117
117
118
118
if in_extern_block {
@@ -126,7 +126,7 @@ fn add_keywords(acc: &mut Completions, ctx: &CompletionContext<'_>, kind: Option
126
126
}
127
127
128
128
add_keyword ( "fn" , "fn $1($2) {\n $0\n }" ) ;
129
- add_keyword ( "unsafe" , "unsafe" ) ;
129
+ add_keyword ( "unsafe" , "unsafe $0 " ) ;
130
130
add_keyword ( "const" , "const $0" ) ;
131
131
}
132
132
}
0 commit comments