2016-01-12 21:25:47 +01:00
|
|
|
hook global BufCreate .*\.(repo|service|target|socket|ini|cfg) %{
|
2016-01-28 20:33:21 +01:00
|
|
|
set buffer filetype ini
|
2015-08-05 20:47:22 +02:00
|
|
|
}
|
|
|
|
|
2016-09-25 15:07:53 +02:00
|
|
|
addhl -group / regions -default code ini \
|
2015-08-05 20:47:22 +02:00
|
|
|
comment (^|\h)\K\# $ ''
|
|
|
|
|
2016-09-25 15:07:53 +02:00
|
|
|
addhl -group /ini/code regex "^\h*\[[^\]]*\]" 0:title
|
|
|
|
addhl -group /ini/code regex "^\h*([^\[][^=\n]*=)([^\n]*)" 1:identifier 2:value
|
2015-08-05 20:47:22 +02:00
|
|
|
|
2016-09-25 15:07:53 +02:00
|
|
|
addhl -group /ini/comment fill comment
|
2015-08-05 20:47:22 +02:00
|
|
|
|
2016-10-01 14:43:21 +02:00
|
|
|
hook -group ini-highlight global WinSetOption filetype=ini %{ addhl ref ini }
|
|
|
|
hook -group ini-highlight global WinSetOption filetype=(?!ini).* %{ rmhl ini }
|