We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 358f6b0 commit a0107bdCopy full SHA for a0107bd
src/testdir/test_functions.vim
@@ -468,6 +468,8 @@ func Test_getbufvar()
468
endfunc
469
470
func Test_balloon_show()
471
- " This won't do anything but must not crash either.
472
- call balloon_show('hi!')
+ if has('balloon_eval')
+ " This won't do anything but must not crash either.
473
+ call balloon_show('hi!')
474
+ endif
475
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 401,
769
/**/
770
400,
771
0 commit comments