vim-patch:8.0.0360

Problem:    Sometimes VimL is used, which is confusing.
Solution:   Consistently use "Vim script". (Hirohito Higashi)

b544f3c81f
This commit is contained in:
James McCoy
2017-06-05 23:05:28 -04:00
parent 0088ed0f1a
commit cb8efa4fef
9 changed files with 16 additions and 18 deletions

View File

@@ -67,7 +67,7 @@ NEW_TESTS ?= \
test_timers.res \
test_undo.res \
test_usercommands.res \
test_viml.res \
test_vimscript.res \
test_visual.res \
test_window_id.res \
test_writefile.res \

View File

@@ -121,7 +121,7 @@ let s:fail = 0
let s:errors = []
let s:messages = []
let s:skipped = []
if expand('%') =~ 'test_viml.vim'
if expand('%') =~ 'test_vimscript.vim'
" this test has intentional s:errors, don't use try/catch.
source %
else

View File

@@ -608,7 +608,7 @@ com! -nargs=1 -bar ExecAsScript call ExecAsScript(<f-args>)
" END_OF_TEST_ENVIRONMENT - do not change or remove this line.
" Tests 1 to 15 were moved to test_viml.vim
" Tests 1 to 15 were moved to test_vimscript.vim
let Xtest = 16
"-------------------------------------------------------------------------------