mirror of
https://github.com/vim/vim.git
synced 2026-04-30 07:26:11 +02:00
- Change syntax file maintainer.
- Add Guile and Python command highlighting.
- Update command list to version 12.
- Add foldable regions for the commands 'define', 'if' and 'while'
multiline commands.
- Support documented partial command names.
- Add matchit, browsefilter, and comment formatting support.
- Support embedded C in compiler {code|print} commands.
- Add largely complete settings highlighting and folding.
- Add syntax tests (incomplete).
Thanks to Claudio Fleiner for many years of maintenance.
closes: #10649
Signed-off-by: Doug Kearns <dougkearns@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
42 lines
442 B
Plaintext
42 lines
442 B
Plaintext
# GDB multiline commands
|
|
# VIM_TEST_SETUP setl fdc=2 fdl=999 fdm=syntax
|
|
|
|
define hello
|
|
echo Hello, world!\n
|
|
end
|
|
|
|
document Foo
|
|
Print a greeting.
|
|
end
|
|
|
|
commands
|
|
echo Hello, world!\n
|
|
end
|
|
|
|
compile code
|
|
printf("Hello, world!\n");
|
|
end
|
|
|
|
expression code
|
|
printf("Hello, world!\n");
|
|
end
|
|
|
|
python
|
|
print("Hello, world!\n")
|
|
end
|
|
|
|
guile
|
|
(display "Hello, world!\n")
|
|
end
|
|
|
|
while 0
|
|
echo Not this time\n
|
|
end
|
|
|
|
if 1
|
|
echo Yes\n
|
|
else
|
|
echo No\n
|
|
end
|
|
|