mirror of
https://github.com/vim/vim.git
synced 2025-07-04 23:07:33 -04:00
patch 7.4.2203
Problem: Test fails with normal features. Solution: Check is signs are supported.
This commit is contained in:
parent
b338483152
commit
ebcccad573
@ -40,9 +40,11 @@ function Test_path_keep_commas()
|
||||
endfunction
|
||||
|
||||
func Test_signcolumn()
|
||||
call assert_equal("auto", &signcolumn)
|
||||
set signcolumn=yes
|
||||
set signcolumn=no
|
||||
call assert_fails('set signcolumn=nope')
|
||||
if has('signs')
|
||||
call assert_equal("auto", &signcolumn)
|
||||
set signcolumn=yes
|
||||
set signcolumn=no
|
||||
call assert_fails('set signcolumn=nope')
|
||||
endif
|
||||
endfunc
|
||||
|
||||
|
@ -763,6 +763,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2203,
|
||||
/**/
|
||||
2202,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user