1
0
forked from aniani/vim

patch 8.2.0294: cannot use Ex command that is also a function name

Problem:    Cannot use Ex command that is also a function name.
Solution:   Recognize an Ex command by a colon prefix.
This commit is contained in:
Bram Moolenaar
2020-02-21 18:42:43 +01:00
parent 818fc9ad14
commit 5b1c8fe3d5
4 changed files with 73 additions and 39 deletions

View File

@@ -570,5 +570,12 @@ def Test_delfunc()
delete('XToDelFunc')
enddef
def Test_substitute_cmd()
new
setline(1, 'something')
:substitute(some(other(
assert_equal('otherthing', getline(1))
enddef
" vim: ts=8 sw=2 sts=2 expandtab tw=80 fdm=marker