From 73340c1ce2ac44acd1604536ab9097f19b62e4ae Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Tue, 14 Jul 2020 23:12:27 +0900 Subject: 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 --- src/nvim/testdir/test_signs.vim | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src') 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 -- cgit