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 336bd62 commit 08b270aCopy full SHA for 08b270a
2 files changed
src/testdir/test_expand.vim
@@ -20,10 +20,13 @@ func Test_with_directories()
20
next! Xdir?/*/nofile
21
call assert_equal('Xdir?/*/nofile', expand('%'))
22
endif
23
+ " Edit another file, on MS-Windows the swap file would be in use and can't
24
+ " be deleted.
25
+ edit foo
26
- call delete('Xdir1', 'rf')
- call delete('Xdir2', 'rf')
- call delete('Xdir3', 'rf')
27
+ call assert_equal(0, delete('Xdir1', 'rf'))
28
+ call assert_equal(0, delete('Xdir2', 'rf'))
29
+ call assert_equal(0, delete('Xdir3', 'rf'))
30
endfunc
31
32
func Test_with_tilde()
src/version.c
@@ -741,6 +741,8 @@ static char *(features[]) =
741
742
static int included_patches[] =
743
{ /* Add new patch number below this line */
744
+/**/
745
+ 1121,
746
/**/
747
1120,
748
0 commit comments