mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
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>
35 lines
475 B
VimL
35 lines
475 B
VimL
" Vim :debuggreedy command
|
|
|
|
|
|
debuggreedy
|
|
0debuggreedy
|
|
|
|
debuggreedy " comment
|
|
0debuggreedy " comment
|
|
|
|
debuggreedy | echo "Foo"
|
|
0debuggreedy | echo "Foo"
|
|
|
|
function Foo()
|
|
debuggreedy
|
|
0debuggreedy
|
|
|
|
debuggreedy " comment
|
|
0debuggreedy " comment
|
|
|
|
debuggreedy | echo "Foo"
|
|
0debuggreedy | echo "Foo"
|
|
endfunction
|
|
|
|
def Bar()
|
|
debuggreedy
|
|
0debuggreedy
|
|
|
|
debuggreedy # comment
|
|
0debuggreedy # comment
|
|
|
|
debuggreedy | echo "Foo"
|
|
0debuggreedy | echo "Foo"
|
|
enddef
|
|
|