We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78eb9cc commit f2a8bafCopy full SHA for f2a8baf
src/testdir/test_recover.vim
@@ -170,6 +170,12 @@ func Test_recover_empty_swap_file()
170
call assert_match('Unable to read block 0 from .Xfile1.swp', msg)
171
call assert_equal('Xfile1', @%)
172
bw!
173
+
174
+ " make sure there are no old swap files laying around
175
+ for f in glob('.sw?', 0, 1)
176
+ call delete(f)
177
+ endfor
178
179
" :recover from an empty buffer
180
call assert_fails('recover', 'E305:')
181
call delete('.Xfile1.swp')
src/version.c
@@ -755,6 +755,8 @@ static char *(features[]) =
755
756
static int included_patches[] =
757
{ /* Add new patch number below this line */
758
+/**/
759
+ 3440,
760
/**/
761
3439,
762
0 commit comments