0
0
mirror of https://github.com/vim/vim.git synced 2025-10-20 08:14:18 -04:00

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>
This commit is contained in:
Doug Kearns
2025-09-28 17:56:01 +00:00
committed by Christian Brabandt
parent 38b98bd8e6
commit f4a6acd86e
14 changed files with 151 additions and 24 deletions

View File

@@ -12,3 +12,9 @@ eval "Foo"->append(0) | echo "Foo"
echo "Foo" | eval "Foo"->append(0)
eval "Foo"->append(0) " comment
def Vim9Context()
eval "Foo"->append(0) # comment
enddef