Skip to content

Commit 6ebf195

Browse files
authored
fix: incorrect CompletionItemKind for postfix snippets
1 parent 7d06e55 commit 6ebf195

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/core/completion/postfix.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ local function checkPostFix(state, word, wordPosition, position, symbol, results
353353
end):gsub('%$%{?%d+%}?', '')
354354
results[#results+1] = {
355355
label = action.key,
356-
kind = define.CompletionItemKind.Event,
356+
kind = define.CompletionItemKind.Snippet,
357357
description = markdown()
358358
: add('lua', descText)
359359
: string(),

0 commit comments

Comments
 (0)