1
0
forked from aniani/vim

patch 8.2.1943: Vim9: wrong error message when colon is missing

Problem:    Vim9: wrong error message when colon is missing.
Solution:   Check for a missing colon. (issue #7239)
This commit is contained in:
Bram Moolenaar
2020-11-02 21:08:47 +01:00
parent dbfa795d8b
commit 36113e46b4
3 changed files with 23 additions and 5 deletions

View File

@@ -460,6 +460,15 @@ def Test_command_modifier_other()
# verbose
enddef
def Test_range_after_command_modifier()
CheckScriptFailure(['vim9script', 'silent keepjump 1d _'], 'E1050:', 2)
new
setline(1, 'xxx')
CheckScriptSuccess(['vim9script', 'silent keepjump :1d _'])
assert_equal('', getline(1))
bwipe!
enddef
def Test_eval_command()
var from = 3
var to = 5