diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2021-12-06 13:55:38 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-06 13:55:38 +0100 |
| commit | 0a3826646f9348f9a82b9c8a79efc16dbaf3a21d (patch) | |
| tree | dd90b4168838e63bd6cc71744092162a8a031c4e /runtime/syntax/squirrel.vim | |
| parent | 523f03b506bf577811c0e136bc852cdb89f92c00 (diff) | |
| download | rneovim-0a3826646f9348f9a82b9c8a79efc16dbaf3a21d.tar.gz rneovim-0a3826646f9348f9a82b9c8a79efc16dbaf3a21d.tar.bz2 rneovim-0a3826646f9348f9a82b9c8a79efc16dbaf3a21d.zip | |
vim-patch:4700398e384f (#16538)
Update runtime files
https://github.com/vim/vim/commit/4700398e384f38f752b432e187462f404b96847d
partial skip:
doc/sign.txt
doc/various.txt
doc/motion.txt
Diffstat (limited to 'runtime/syntax/squirrel.vim')
| -rw-r--r-- | runtime/syntax/squirrel.vim | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/runtime/syntax/squirrel.vim b/runtime/syntax/squirrel.vim new file mode 100644 index 0000000000..81d59cc986 --- /dev/null +++ b/runtime/syntax/squirrel.vim @@ -0,0 +1,50 @@ +" Vim syntax file +" Language: squirrel +" Current Maintainer: Matt Dunford (zenmatic@gmail.com) +" URL: https://github.com/zenmatic/vim-syntax-squirrel +" Last Change: 2021 Nov 28 + +" http://squirrel-lang.org/ + +" quit when a syntax file was already loaded +if exists("b:current_syntax") + finish +endif + +" inform C syntax that the file was included from cpp.vim +let b:filetype_in_cpp_family = 1 + +" Read the C syntax to start with +runtime! syntax/c.vim +unlet b:current_syntax + +" squirrel extensions +syn keyword squirrelStatement delete this in yield resume base clone +syn keyword squirrelAccess local +syn keyword cConstant null +syn keyword squirrelModifier static +syn keyword squirrelType bool instanceof typeof +syn keyword squirrelExceptions throw try catch +syn keyword squirrelStructure class function extends constructor +syn keyword squirrelBoolean true false +syn keyword squirrelRepeat foreach + +syn region squirrelMultiString start='@"' end='"$' end='";$'me=e-1 + +syn match squirrelShComment "^\s*#.*$" + +" Default highlighting +hi def link squirrelAccess squirrelStatement +hi def link squirrelExceptions Exception +hi def link squirrelStatement Statement +hi def link squirrelModifier Type +hi def link squirrelType Type +hi def link squirrelStructure Structure +hi def link squirrelBoolean Boolean +hi def link squirrelMultiString String +hi def link squirrelRepeat cRepeat +hi def link squirrelShComment Comment + +let b:current_syntax = "squirrel" + +" vim: ts=8 |