aboutsummaryrefslogtreecommitdiff
path: root/test/old/testdir
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-10-10 11:33:54 +0800
committerGitHub <noreply@github.com>2024-10-10 11:33:54 +0800
commit112139ea9b32c593752b862cace32ba5dc87ef2c (patch)
tree317715f7435d6fb0e331a2a803b0f4c6a7b42052 /test/old/testdir
parentcd8e15e3373dc9544d582640f043d3dee83a953d (diff)
parent9612b3a9053ae2dfe5a4321a5dd0af249c281543 (diff)
downloadrneovim-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/old/testdir')
-rw-r--r--test/old/testdir/test_popup.vim8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/old/testdir/test_popup.vim b/test/old/testdir/test_popup.vim
index 472882fb87..d35d32b13d 100644
--- a/test/old/testdir/test_popup.vim
+++ b/test/old/testdir/test_popup.vim
@@ -1506,7 +1506,7 @@ func Test_pum_highlights_match()
call StopVimInTerminal(buf)
endfunc
-func Test_pum_user_hl_group()
+func Test_pum_user_abbr_hlgroup()
CheckScreendump
let lines =<< trim END
func CompleteFunc( findstart, base )
@@ -1515,9 +1515,9 @@ func Test_pum_user_hl_group()
endif
return {
\ 'words': [
- \ { 'word': 'aword1', 'menu': 'extra text 1', 'kind': 'W', 'hl_group': 'StrikeFake' },
+ \ { 'word': 'aword1', 'menu': 'extra text 1', 'kind': 'W', 'abbr_hlgroup': 'StrikeFake' },
\ { 'word': 'aword2', 'menu': 'extra text 2', 'kind': 'W', },
- \ { 'word': '你好', 'menu': 'extra text 3', 'kind': 'W', 'hl_group': 'StrikeFake' },
+ \ { 'word': '你好', 'menu': 'extra text 3', 'kind': 'W', 'abbr_hlgroup': 'StrikeFake' },
\]}
endfunc
set completeopt=menu
@@ -1559,7 +1559,7 @@ func Test_pum_user_kind_hlgroup()
endif
return {
\ 'words': [
- \ { 'word': 'aword1', 'menu': 'extra text 1', 'kind': 'variable', 'kind_hlgroup': 'KindVar', 'hl_group': 'StrikeFake' },
+ \ { 'word': 'aword1', 'menu': 'extra text 1', 'kind': 'variable', 'kind_hlgroup': 'KindVar', 'abbr_hlgroup': 'StrikeFake' },
\ { 'word': 'aword2', 'menu': 'extra text 2', 'kind': 'function', 'kind_hlgroup': 'KindFunc' },
\ { 'word': '你好', 'menu': 'extra text 3', 'kind': 'class', 'kind_hlgroup': 'KindClass' },
\]}