mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.2.1940: Vim9: browse modifier test fails on Mac
Problem: Vim9: browse modifier test fails on Mac. Solution: Only test when the +browse feature is available.
This commit is contained in:
parent
3b6d57f2ce
commit
97a19005e1
@ -347,9 +347,11 @@ def Test_win_command_modifiers()
|
|||||||
assert_equal(2, winnr())
|
assert_equal(2, winnr())
|
||||||
close
|
close
|
||||||
|
|
||||||
browse set
|
if has('browse')
|
||||||
assert_equal('option-window', expand('%'))
|
browse set
|
||||||
close
|
assert_equal('option-window', expand('%'))
|
||||||
|
close
|
||||||
|
endif
|
||||||
|
|
||||||
vsplit
|
vsplit
|
||||||
botright split
|
botright split
|
||||||
|
@ -750,6 +750,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 */
|
||||||
|
/**/
|
||||||
|
1940,
|
||||||
/**/
|
/**/
|
||||||
1939,
|
1939,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user