kakoune/rc/sh.kak

28 lines
1.2 KiB
Plaintext
Raw Normal View History

hook global BufCreate .*\.((z|ba|c|k)?sh) %{
set buffer filetype sh
}
hook global BufSetOption mimetype=text/x-shellscript %{
set buffer filetype sh
}
addhl -group / regions -default code sh \
2015-07-02 21:59:34 +02:00
double_string %{(?<!\\)(\\\\)*\K"} %{(?<!\\)(\\\\)*"} '' \
single_string %{(?<!\\)(\\\\)*\K'} %{'} '' \
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
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
2014-07-14 21:59:36 +02:00
addhl -group /sh/code regex [\[\]\(\)&|]{2} 0:operator
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
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
hook global WinSetOption filetype=sh %{ addhl ref sh }
hook global WinSetOption filetype=(?!sh).* %{ rmhl sh }