2013-01-08 14:01:22 +01:00
|
|
|
hook global BufCreate .*\.(sh) %{
|
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
|
|
|
|
2013-12-03 23:15:59 +01:00
|
|
|
defhl sh
|
|
|
|
addhl -def-group sh regex \<(if|then|fi|while|for|do|done|case|esac|echo|cd|shift|return|exit|local)\> 0:keyword
|
|
|
|
addhl -def-group sh regex [\[\]\(\)&|]{2} 0:operator
|
|
|
|
addhl -def-group sh regex (\w+)= 1:identifier
|
|
|
|
addhl -def-group sh regex ^\h*(\w+)\h*\(\) 1:identifier
|
|
|
|
addhl -def-group sh regex "(^|\h)#.*?$" 0:comment
|
|
|
|
addhl -def-group sh regex (["'])(?:\\\1|.)*?\1 0:string
|
|
|
|
addhl -def-group sh 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 }
|