2012-07-31 14:22:57 +02:00
|
|
|
hook global BufCreate (.*/)?(kakrc|.*.kak) %{
|
2013-10-30 10:38:40 +01:00
|
|
|
set buffer filetype kak
|
2012-07-31 14:22:57 +02:00
|
|
|
}
|
2012-06-14 15:21:22 +02:00
|
|
|
|
2013-12-03 23:15:59 +01:00
|
|
|
defhl kakrc
|
2014-06-12 00:29:23 +02:00
|
|
|
addhl -def-group kakrc multi_region -default kakrc root \
|
|
|
|
comment (^|\h)\K\# \n '' \
|
|
|
|
double_string %{(^|\h)"} %{(?<!\\)(\\\\)*"} '' \
|
|
|
|
single_string %{(^|\h)'} %{(?<!\\)(\\\\)*'} '' \
|
|
|
|
shell '%sh\{' '\}' '\{'
|
2014-06-10 23:02:42 +02:00
|
|
|
|
2014-06-12 00:29:23 +02:00
|
|
|
addhl -def-group kakrc/root/kakrc regex \<(hook|rmhooks|defhl|addhl|rmhl|add|exec|eval|source|runtime|def|decl|echo|edit|set)\> 0:keyword
|
|
|
|
addhl -def-group kakrc/root/kakrc regex \<(default|black|red|green|yellow|blue|magenta|cyan|white)\> 0:value
|
|
|
|
addhl -def-group kakrc/root/kakrc regex (?<=\<hook)\h+((global|buffer|window)|(\S+))\h+(\S+)\h+(\H+) 2:attribute 3:error 4:identifier 5:string
|
|
|
|
addhl -def-group kakrc/root/kakrc regex (?<=\<set)\h+((global|buffer|window)|(\S+))\h+(\S+)\h+(\S+) 2:attribute 3:error 4:identifier 5:value
|
|
|
|
addhl -def-group kakrc/root/kakrc regex (?<=\<regex)\h+(\S+) 1:string
|
2014-06-10 23:02:42 +02:00
|
|
|
|
2014-06-12 00:29:23 +02:00
|
|
|
addhl -def-group kakrc/root/double_string fill string
|
|
|
|
addhl -def-group kakrc/root/single_string fill string
|
|
|
|
addhl -def-group kakrc/root/comment fill comment
|
|
|
|
addhl -def-group kakrc/root/shell ref sh
|
2012-06-14 15:21:22 +02:00
|
|
|
|
2013-12-03 23:15:59 +01:00
|
|
|
hook global WinSetOption filetype=kak %{ addhl ref kakrc }
|
|
|
|
hook global WinSetOption filetype=(?!kak).* %{ rmhl kakrc }
|