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