Skip to content

Commit

Permalink
fix: incorrect CompletionItemKind for postfix snippets
Browse files Browse the repository at this point in the history
  • Loading branch information
tmillr authored and sumneko committed Jul 31, 2024
1 parent fcf2952 commit e76d7d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/core/completion/postfix.lua
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ local function checkPostFix(state, word, wordPosition, position, symbol, results
end):gsub('%$%{?%d+%}?', '')
results[#results+1] = {
label = action.key,
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
description = markdown()
: add('lua', descText)
: string(),
Expand Down

0 comments on commit e76d7d6

Please sign in to comment.