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 54651f7 commit d19b234Copy full SHA for d19b234
2 files changed
src/testdir/test_compiler.vim
@@ -28,9 +28,9 @@ endfunc
28
29
func Test_compiler_without_arg()
30
let a=split(execute('compiler'))
31
- call assert_equal($VIMRUNTIME . '/compiler/ant.vim', a[0])
32
- call assert_equal($VIMRUNTIME . '/compiler/bcc.vim', a[1])
33
- call assert_equal($VIMRUNTIME . '/compiler/xmlwf.vim', a[-1])
+ call assert_match('^.*runtime/compiler/ant.vim$', a[0])
+ call assert_match('^.*runtime/compiler/bcc.vim$', a[1])
+ call assert_match('^.*runtime/compiler/xmlwf.vim$', a[-1])
34
endfunc
35
36
func Test_compiler_completion()
src/version.c
@@ -761,6 +761,8 @@ static char *(features[]) =
761
762
static int included_patches[] =
763
{ /* Add new patch number below this line */
764
+/**/
765
+ 5,
766
/**/
767
4,
768
0 commit comments