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
|
endfunction
|
||||||
|
|
||||||
func Test_signcolumn()
|
func Test_signcolumn()
|
||||||
call assert_equal("auto", &signcolumn)
|
if has('signs')
|
||||||
set signcolumn=yes
|
call assert_equal("auto", &signcolumn)
|
||||||
set signcolumn=no
|
set signcolumn=yes
|
||||||
call assert_fails('set signcolumn=nope')
|
set signcolumn=no
|
||||||
|
call assert_fails('set signcolumn=nope')
|
||||||
|
endif
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
@ -763,6 +763,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
2203,
|
||||||
/**/
|
/**/
|
||||||
2202,
|
2202,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user