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 Aug 1, 2024
1 parent 1c7755b commit d0a712d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* `FIX` Inconsistent type narrow behavior of function call args [#2758](https://github.com/LuaLS/lua-language-server/issues/2758)
* `FIX` Typos in annotation descriptions
* `NEW` You can now click on "References" in CodeLen to display the reference list
* `FIX` incorrect `CompletionItemKind` for postfix snippets [#2773](https://github.com/LuaLS/lua-language-server/pull/2773)

## 3.9.3
`2024-6-11`
Expand Down
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
26 changes: 13 additions & 13 deletions test/completion/common.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3235,7 +3235,7 @@ xx@pcall<??>
{
[1] = {
label = 'pcall',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 3,
finish = 8,
Expand All @@ -3257,7 +3257,7 @@ xx()@pcall<??>
{
[1] = {
label = 'pcall',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 5,
finish = 10,
Expand All @@ -3279,7 +3279,7 @@ xx(1, 2, 3)@pcall<??>
{
[1] = {
label = 'pcall',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 12,
finish = 17,
Expand All @@ -3301,7 +3301,7 @@ xx@xpcall<??>
{
[1] = {
label = 'xpcall',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 3,
finish = 9,
Expand All @@ -3323,7 +3323,7 @@ xx()@xpcall<??>
{
[1] = {
label = 'xpcall',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 5,
finish = 11,
Expand All @@ -3345,7 +3345,7 @@ xx(1, 2, 3)@xpcall<??>
{
[1] = {
label = 'xpcall',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 12,
finish = 18,
Expand All @@ -3367,7 +3367,7 @@ xx@function<??>
{
[1] = {
label = 'function',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 3,
finish = 11,
Expand All @@ -3389,7 +3389,7 @@ xx.yy@method<??>
{
[1] = {
label = 'method',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 6,
finish = 12,
Expand All @@ -3411,7 +3411,7 @@ xx:yy@method<??>
{
[1] = {
label = 'method',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 6,
finish = 12,
Expand All @@ -3433,7 +3433,7 @@ xx@insert<??>
{
[1] = {
label = 'insert',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 3,
finish = 9,
Expand All @@ -3455,7 +3455,7 @@ xx++<??>
{
[1] = {
label = '++',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 2,
finish = 4,
Expand All @@ -3471,7 +3471,7 @@ xx++<??>
},
[2] = {
label = '++?',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 2,
finish = 4,
Expand All @@ -3495,7 +3495,7 @@ end)
{
[1] = {
label = 'xpcall',
kind = define.CompletionItemKind.Event,
kind = define.CompletionItemKind.Snippet,
textEdit = {
start = 10007,
finish = 10013,
Expand Down

0 comments on commit d0a712d

Please sign in to comment.