2015-10-21 10:50:31 +02:00
|
|
|
hook global BufCreate .*\.(z|ba|c|k)?sh(rc|_profile)? %{
|
2013-10-30 10:38:40 +01:00
|
|
|
set buffer filetype sh
|
2013-01-08 14:01:22 +01:00
|
|
|
}
|
|
|
|
|
2013-11-12 21:38:00 +01:00
|
|
|
hook global BufSetOption mimetype=text/x-shellscript %{
|
|
|
|
set buffer filetype sh
|
|
|
|
}
|
2013-01-08 14:01:22 +01:00
|
|
|
|
2014-07-14 22:42:19 +02:00
|
|
|
addhl -group / regions -default code sh \
|
2015-07-02 21:59:34 +02:00
|
|
|
double_string %{(?<!\\)(\\\\)*\K"} %{(?<!\\)(\\\\)*"} '' \
|
|
|
|
single_string %{(?<!\\)(\\\\)*\K'} %{'} '' \
|
2015-06-11 19:26:45 +02:00
|
|
|
comment '(?<!\$)#' '$' ''
|
2014-06-12 22:52:23 +02:00
|
|
|
|
2014-07-14 21:59:36 +02:00
|
|
|
addhl -group /sh/double_string fill string
|
|
|
|
addhl -group /sh/single_string fill string
|
|
|
|
addhl -group /sh/comment fill comment
|
2014-06-12 22:52:23 +02:00
|
|
|
|
2016-03-14 13:08:51 +01:00
|
|
|
%sh{
|
|
|
|
# Grammar
|
|
|
|
keywords="alias:bind:builtin:caller:case:cd:command:coproc:declare:do:done"
|
|
|
|
keywords="${keywords}:echo:elif:else:enable:esac:exit:fi:for:function:help"
|
|
|
|
keywords="${keywords}:if:in:let:local:logout:mapfile:printf:read:readarray"
|
|
|
|
keywords="${keywords}:readonly:return:select:set:shift:source:test:then"
|
|
|
|
keywords="${keywords}:time:type:typeset:ulimit:unalias:until:while"
|
|
|
|
|
|
|
|
# Add the language's grammar to the static completion list
|
|
|
|
echo "hook global WinSetOption filetype=sh %{
|
|
|
|
set window static_words '${keywords}'
|
|
|
|
}"
|
|
|
|
|
|
|
|
# Highlight keywords
|
|
|
|
echo "
|
|
|
|
addhl -group /sh/code regex \<(${keywords//:/|})\> 0:keyword
|
|
|
|
"
|
|
|
|
}
|
|
|
|
|
2015-10-02 14:43:37 +02:00
|
|
|
addhl -group /sh/code regex [\[\]\(\)&|]{2}|\[\s|\s\] 0:operator
|
2014-07-14 21:59:36 +02:00
|
|
|
addhl -group /sh/code regex (\w+)= 1:identifier
|
|
|
|
addhl -group /sh/code regex ^\h*(\w+)\h*\(\) 1:identifier
|
2014-06-12 22:52:23 +02:00
|
|
|
|
2015-06-11 19:26:45 +02:00
|
|
|
addhl -group /sh/code regex \$(\w+|\{.+?\}|#|@|\?|\$|!|-|\*) 0:identifier
|
2014-07-14 21:59:36 +02:00
|
|
|
addhl -group /sh/double_string regex \$(\w+|\{.+?\}) 0:identifier
|
2013-01-08 14:01:22 +01:00
|
|
|
|
2013-12-03 23:15:59 +01:00
|
|
|
hook global WinSetOption filetype=sh %{ addhl ref sh }
|
|
|
|
hook global WinSetOption filetype=(?!sh).* %{ rmhl sh }
|