diff options
author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2020-07-14 23:12:27 +0900 |
---|---|---|
committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2020-07-23 10:29:36 +0900 |
commit | 73340c1ce2ac44acd1604536ab9097f19b62e4ae (patch) | |
tree | dc1616c6b441372759713a569e56cdfa341ec686 /src | |
parent | 1647e0a5b306dc6767a5298c8a9281a0fc7ace14 (diff) | |
download | rneovim-73340c1ce2ac44acd1604536ab9097f19b62e4ae.tar.gz rneovim-73340c1ce2ac44acd1604536ab9097f19b62e4ae.tar.bz2 rneovim-73340c1ce2ac44acd1604536ab9097f19b62e4ae.zip |
vim-patch:8.1.1570: icon signs not displayed properly in the number column
Problem: Icon signs not displayed properly in the number column.
Solution: Display them properly. (Yegappan Lakshmanan, closes vim/vim#4559)
https://github.com/vim/vim/commit/4dff4aed09d2b0d570ca0d19de9cb08bdf03e695
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_signs.vim | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/nvim/testdir/test_signs.vim b/src/nvim/testdir/test_signs.vim index 3dad290c94..2b7672f1af 100644 --- a/src/nvim/testdir/test_signs.vim +++ b/src/nvim/testdir/test_signs.vim @@ -6,9 +6,6 @@ endif source screendump.vim -" Note: In neovim, swapfile feature must be disabled -set noswapfile - func Test_sign() new call setline(1, ['a', 'b', 'c', 'd']) @@ -1786,7 +1783,7 @@ func Test_sign_numcol() " Enable number column. Check whether sign is displayed in the number column set number redraw! - call assert_equal("=> 01234", s:ScreenLine(1, 1, 9)) + call assert_equal(" => 01234", s:ScreenLine(1, 1, 9)) " Disable sign column. Make sure line number is displayed set signcolumn=no |