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 913727e commit 24f8f54Copy full SHA for 24f8f54
2 files changed
src/testdir/test_packadd.vim
@@ -73,7 +73,7 @@ func Test_packadd_symlink_dir()
73
endif
74
let top2_dir = s:topdir . '/Xdir2'
75
let real_dir = s:topdir . '/Xsym'
76
- silent !ln -s real_dir top2_dir
+ exec "silent !ln -s" real_dir top2_dir
77
let &rtp = top2_dir . ',' . top2_dir . '/after'
78
let &packpath = &rtp
79
@@ -98,7 +98,7 @@ func Test_packadd_symlink_dir()
98
99
set rtp&
100
let rtp = &rtp
101
- silent !rm top2_dir
+ exec "silent !rm" top2_dir
102
endfunc
103
104
" Check command-line completion for 'packadd'
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
+ 326,
769
/**/
770
325,
771
0 commit comments