diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-08-19 20:34:58 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-19 20:34:58 +0800 |
commit | 421713523e154009223c31cdbfe8486262c6f5e4 (patch) | |
tree | cfbe815435ecb39d3403fa5430003a336f181928 /test/old/testdir/test_highlight.vim | |
parent | c8e58bf09c4abc92c8689a80eb90150c5ff3cdfc (diff) | |
download | rneovim-421713523e154009223c31cdbfe8486262c6f5e4.tar.gz rneovim-421713523e154009223c31cdbfe8486262c6f5e4.tar.bz2 rneovim-421713523e154009223c31cdbfe8486262c6f5e4.zip |
vim-patch:9.0.1745: Missing test coverage for blockwise Visual highlight (#24790)
Problem: Missing test coverage for blockwise Visual highlight with
virtual that starts with a double-width char.
Solution: Add a new virtual text to the test. Some other small fixes.
closes: vim/vim#12835
https://github.com/vim/vim/commit/fc3058495d3ff58c8f2b9dd4452d0840f2d1fa42
Diffstat (limited to 'test/old/testdir/test_highlight.vim')
-rw-r--r-- | test/old/testdir/test_highlight.vim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/old/testdir/test_highlight.vim b/test/old/testdir/test_highlight.vim index dcfd1a350a..14c208521b 100644 --- a/test/old/testdir/test_highlight.vim +++ b/test/old/testdir/test_highlight.vim @@ -698,10 +698,9 @@ func Test_colorcolumn_sbr() let lines =<< trim END call setline(1, 'The quick brown fox jumped over the lazy dogs') END - call writefile(lines, 'Xtest_colorcolumn_srb', 'D') - let buf = RunVimInTerminal('-S Xtest_colorcolumn_srb', {'rows': 10,'columns': 40}) + call writefile(lines, 'Xtest_colorcolumn_sbr', 'D') + let buf = RunVimInTerminal('-S Xtest_colorcolumn_sbr', {'rows': 10,'columns': 40}) call term_sendkeys(buf, ":set co=40 showbreak=+++>\\ cc=40,41,43\<CR>") - call TermWait(buf) call VerifyScreenDump(buf, 'Test_colorcolumn_3', {}) " clean up |