mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #10656 from blueyed/minor
Minor: align test, fix comment/usage
This commit is contained in:
commit
be6bf75d79
@ -8,7 +8,7 @@ local funcs_file = arg[4]
|
|||||||
if nvimsrcdir == '--help' then
|
if nvimsrcdir == '--help' then
|
||||||
print([[
|
print([[
|
||||||
Usage:
|
Usage:
|
||||||
lua geneval.lua src/nvim build/src/nvim/auto
|
lua gen_eval.lua src/nvim build/src/nvim/auto
|
||||||
|
|
||||||
Will generate build/src/nvim/auto/funcs.generated.h with definition of functions
|
Will generate build/src/nvim/auto/funcs.generated.h with definition of functions
|
||||||
static const array.
|
static const array.
|
||||||
|
@ -33,9 +33,9 @@ endfunc
|
|||||||
|
|
||||||
func Test_compiler_without_arg()
|
func Test_compiler_without_arg()
|
||||||
let a=split(execute('compiler'))
|
let a=split(execute('compiler'))
|
||||||
call assert_match(expand('^.*runtime/compiler/ant.vim$'), a[0])
|
call assert_match('^.*runtime/compiler/ant.vim$', a[0])
|
||||||
call assert_match(expand('^.*runtime/compiler/bcc.vim$'), a[1])
|
call assert_match('^.*runtime/compiler/bcc.vim$', a[1])
|
||||||
call assert_match(expand('^.*runtime/compiler/xmlwf.vim$'), a[-1])
|
call assert_match('^.*runtime/compiler/xmlwf.vim$', a[-1])
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_compiler_completion()
|
func Test_compiler_completion()
|
||||||
|
Loading…
Reference in New Issue
Block a user