diff options
author | glepnir <glephunter@gmail.com> | 2024-07-27 18:06:21 +0800 |
---|---|---|
committer | glepnir <glephunter@gmail.com> | 2024-07-27 18:10:33 +0800 |
commit | bc8a776ef8afd53ac7b045eeed8935284e1cc4d4 (patch) | |
tree | 419ac15227febb2b3ed1acbd1186bcc60d695fa4 /test/old | |
parent | f132f8e9d43e3e5f56079bcae40d87b871d7b61b (diff) | |
download | rneovim-bc8a776ef8afd53ac7b045eeed8935284e1cc4d4.tar.gz rneovim-bc8a776ef8afd53ac7b045eeed8935284e1cc4d4.tar.bz2 rneovim-bc8a776ef8afd53ac7b045eeed8935284e1cc4d4.zip |
vim-patch:9.1.0619: tests: test_popup fails
Problem: tests: test_popup fails
(after v9.1.0618)
Solution: Correct test, move combining extra attributes to
pum_compute_text_attrs() (glepnir)
closes: vim/vim#15353
https://github.com/vim/vim/commit/8754efe437fcb17ad2c64192f8722e08d68e032e
Co-authored-by: glepnir <glephunter@gmail.com>
Diffstat (limited to 'test/old')
-rw-r--r-- | test/old/testdir/test_popup.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/old/testdir/test_popup.vim b/test/old/testdir/test_popup.vim index 6881abcc0f..1bba1d9397 100644 --- a/test/old/testdir/test_popup.vim +++ b/test/old/testdir/test_popup.vim @@ -1516,9 +1516,9 @@ func Test_pum_extrahl() endif return { \ 'words': [ - \ { 'word': 'aword1', 'menu': 'extra text 1', 'kind': 'W', 'extrahl': 'StrikeFake' }, + \ { 'word': 'aword1', 'menu': 'extra text 1', 'kind': 'W', 'hl_group': 'StrikeFake' }, \ { 'word': 'aword2', 'menu': 'extra text 2', 'kind': 'W', }, - \ { 'word': '你好', 'menu': 'extra text 3', 'kind': 'W', 'extrahl': 'StrikeFake' }, + \ { 'word': '你好', 'menu': 'extra text 3', 'kind': 'W', 'hl_group': 'StrikeFake' }, \]} endfunc set completeopt=menu |