diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2024-10-10 11:33:54 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-10 11:33:54 +0800 |
| commit | 112139ea9b32c593752b862cace32ba5dc87ef2c (patch) | |
| tree | 317715f7435d6fb0e331a2a803b0f4c6a7b42052 /test/functional/plugin | |
| parent | cd8e15e3373dc9544d582640f043d3dee83a953d (diff) | |
| parent | 9612b3a9053ae2dfe5a4321a5dd0af249c281543 (diff) | |
| download | rneovim-112139ea9b32c593752b862cace32ba5dc87ef2c.tar.gz rneovim-112139ea9b32c593752b862cace32ba5dc87ef2c.tar.bz2 rneovim-112139ea9b32c593752b862cace32ba5dc87ef2c.zip | |
Merge pull request #30742 from zeertzjq/vim-9.1.0771
vim-patch:9.1.{0771,0772}
Diffstat (limited to 'test/functional/plugin')
| -rw-r--r-- | test/functional/plugin/lsp/completion_spec.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/functional/plugin/lsp/completion_spec.lua b/test/functional/plugin/lsp/completion_spec.lua index 4df8d77d44..cb49526f56 100644 --- a/test/functional/plugin/lsp/completion_spec.lua +++ b/test/functional/plugin/lsp/completion_spec.lua @@ -320,7 +320,7 @@ describe('vim.lsp.completion: item conversion', function() info = '', kind = 'Module', menu = '', - hl_group = '', + abbr_hlgroup = '', word = 'this_thread', } local result = complete(' std::this|', completion_list) @@ -376,7 +376,7 @@ describe('vim.lsp.completion: item conversion', function() info = '', kind = 'Module', menu = '', - hl_group = '', + abbr_hlgroup = '', word = 'this_thread', } local result = complete(' std::this|is', completion_list) @@ -570,7 +570,7 @@ describe('vim.lsp.completion: protocol', function() info = '', kind = 'Unknown', menu = '', - hl_group = '', + abbr_hlgroup = '', user_data = { nvim = { lsp = { @@ -591,7 +591,7 @@ describe('vim.lsp.completion: protocol', function() info = '', kind = 'Unknown', menu = '', - hl_group = 'DiagnosticDeprecated', + abbr_hlgroup = 'DiagnosticDeprecated', user_data = { nvim = { lsp = { @@ -613,7 +613,7 @@ describe('vim.lsp.completion: protocol', function() info = '', kind = 'Unknown', menu = '', - hl_group = 'DiagnosticDeprecated', + abbr_hlgroup = 'DiagnosticDeprecated', user_data = { nvim = { lsp = { |