File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
crates/ark/src/lsp/completions/sources/composite Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -77,25 +77,25 @@ const KEYWORD_SNIPPETS: &[KeywordSnippet] = &[
77
77
keyword : "if" ,
78
78
label : "if" ,
79
79
snippet : "if (${1:condition}) {\n \t ${0}\n }" ,
80
- label_details_description : "An if statement" ,
80
+ label_details_description : "Insert `if` statement" ,
81
81
} ,
82
82
KeywordSnippet {
83
83
keyword : "else" ,
84
84
label : "else" ,
85
85
snippet : "else {\n \t ${0}\n }" ,
86
- label_details_description : "An else statement" ,
86
+ label_details_description : "Insert ` else` statement" ,
87
87
} ,
88
88
KeywordSnippet {
89
89
keyword : "repeat" ,
90
90
label : "repeat" ,
91
91
snippet : "repeat {\n \t ${0}\n }" ,
92
- label_details_description : "A repeat loop" ,
92
+ label_details_description : "Insert ` repeat` loop" ,
93
93
} ,
94
94
KeywordSnippet {
95
95
keyword : "while" ,
96
96
label : "while" ,
97
97
snippet : "while (${1:condition}) {\n \t ${0}\n }" ,
98
- label_details_description : "A while loop" ,
98
+ label_details_description : "Insert ` while` loop" ,
99
99
} ,
100
100
KeywordSnippet {
101
101
keyword : "function" ,
@@ -107,7 +107,7 @@ const KEYWORD_SNIPPETS: &[KeywordSnippet] = &[
107
107
keyword : "for" ,
108
108
label : "for" ,
109
109
snippet : "for (${1:variable} in ${2:vector}) {\n \t ${0}\n }" ,
110
- label_details_description : "A for loop" ,
110
+ label_details_description : "Insert ` for` loop" ,
111
111
} ,
112
112
] ;
113
113
You can’t perform that action at this time.
0 commit comments