File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ impl Completions {
225
225
let snippet = if ctx
226
226
. db
227
227
. feature_flags
228
- . get ( "completion.insertion.add-argument-sippets " )
228
+ . get ( "completion.insertion.add-argument-snippets " )
229
229
{
230
230
let to_skip = if has_self_param { 1 } else { 0 } ;
231
231
let function_params_snippet = join (
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ impl Default for FeatureFlags {
54
54
FeatureFlags :: new ( & [
55
55
( "lsp.diagnostics" , true ) ,
56
56
( "completion.insertion.add-call-parenthesis" , true ) ,
57
- ( "completion.insertion.add-argument-sippets " , true ) ,
57
+ ( "completion.insertion.add-argument-snippets " , true ) ,
58
58
( "completion.enable-postfix" , true ) ,
59
59
( "call-info.full" , true ) ,
60
60
( "notifications.workspace-loaded" , true ) ,
Original file line number Diff line number Diff line change 197
197
"type" : " boolean" ,
198
198
"description" : " Whether to add parenthesis when completing functions"
199
199
},
200
- "completion.insertion.add-argument-sippets " : {
200
+ "completion.insertion.add-argument-snippets " : {
201
201
"type" : " boolean" ,
202
202
"description" : " Whether to add argument snippets when completing functions"
203
203
},
You can’t perform that action at this time.
0 commit comments