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 aedfcbe commit f68f1d7Copy full SHA for f68f1d7
src/testdir/test_quickfix.vim
@@ -684,6 +684,11 @@ func Test_caddbuffer_to_empty()
684
helpgr quickfix
685
call setqflist([], 'r')
686
cad
687
- call assert_fails('cn', 'E553:')
+ try
688
+ cn
689
+ catch
690
+ " number of matches is unknown
691
+ call assert_true(v:exception =~ 'E553:')
692
+ endtry
693
quit!
694
endfunc
src/version.c
@@ -748,6 +748,8 @@ static char *(features[]) =
748
749
static int included_patches[] =
750
{ /* Add new patch number below this line */
751
+/**/
752
+ 1650,
753
/**/
754
1649,
755
0 commit comments