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 295ac5a commit 948a796Copy full SHA for 948a796
2 files changed
src/testdir/screendump.vim
@@ -26,6 +26,10 @@ source shared.vim
26
"
27
" Options is a dictionary (not used yet).
28
func RunVimInTerminal(arguments, options)
29
+ " If Vim doesn't exit a swap file remains, causing other tests to fail.
30
+ " Remove it here.
31
+ call delete(".swp")
32
+
33
" Make a horizontal and vertical split, so that we can get exactly the right
34
" size terminal window. Works only when we currently have one window.
35
call assert_equal(1, winnr('$'))
src/version.c
@@ -766,6 +766,8 @@ static char *(features[]) =
766
767
static int included_patches[] =
768
{ /* Add new patch number below this line */
769
+/**/
770
+ 1631,
771
/**/
772
1630,
773
0 commit comments