runtime(vim): Cleanup syntax tests

Improve formatting and naming consistency of the syntax tests.

closes: #17850

Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
Doug Kearns
2025-07-25 20:00:25 +02:00
committed by Christian Brabandt
parent e9d1259111
commit cced80dcbb
555 changed files with 1973 additions and 1787 deletions

View File

@ -17,7 +17,7 @@ endif
execute 'while i < 5 | echo i | let i = i + 1 | endwhile'
" trailing bar vs OR operator
" Trailing bar vs OR operator
" OR operator
execute foo || bar ? "Foo" : "NotFoo"
@ -31,7 +31,7 @@ execute "Foo" | |
execute "Foo" ||
" line continuations
" Line continuations
execute "call"
"\ comment
@ -43,7 +43,7 @@ execute
\ "Foo()"
" trailing bar and comments
" Trailing bar and comments
" :execute without {expr}
execute| echo "Foo"