0
0
mirror of https://github.com/vim/vim.git synced 2025-10-19 08:04:27 -04:00
Files
vim/runtime/syntax/testdir/input/vim_ex_execute.vim
Doug Kearns f4a6acd86e runtime(vim): Update base syntax, allow Vim9 :echo tail comments
- Match comments after Vim9 :echo and :execute.
- Match comments after Vim9 and legacy :eval.

closes: #18420

Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
2025-09-28 17:56:01 +00:00

65 lines
1.0 KiB
VimL

" Vim :execute command
" :help :execute
execute "buffer" nextbuf
execute "normal" count .. "w"
execute '!ls' | echo "theend"
execute "normal ixxx\<Esc>"
execute "e " .. fnameescape(filename)
execute "!ls " .. shellescape(filename, 1)
if 0
execute 'while i > 5'
echo "test"
endwhile
endif
execute 'while i < 5 | echo i | let i = i + 1 | endwhile'
" Trailing bar vs OR operator
" OR operator
execute foo || bar ? "Foo" : "NotFoo"
execute foo ||
\ bar ? "Foo" : "NotFoo"
" following command is :|"
execute "Foo" | |
" invalid expression
execute "Foo" ||
" Line continuations
execute "call"
"\ comment
\ "Foo()"
execute
\ "call"
"\ comment
\ "Foo()"
" Trailing bar and comments
" :execute without {expr}
execute| echo "Foo"
" trailing comment needs |
execute "Foo" | " comment
def Vim9Context()
# trailing comment allowed
execute "Foo" # comment
enddef
" Issue #9987 (parenthesised argument - not a function call)
let foo = {'arg': "call Foo()"}
execute (foo.arg)