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
|
|
|
}
|
|
|
|
|
|
|
|
addhl -group / regions -default code ini-highlighter \
|
|
|
|
comment (^|\h)\K\# $ ''
|
|
|
|
|
|
|
|
addhl -group /ini-highlighter/code regex "^\h*\[[^\]]*\]" 0:title
|
|
|
|
addhl -group /ini-highlighter/code regex "^\h*([^\[][^=\n]*=)([^\n]*)" 1:identifier 2:value
|
|
|
|
|
|
|
|
addhl -group /ini-highlighter/comment fill comment
|
|
|
|
|
2016-01-28 20:33:21 +01:00
|
|
|
hook global WinSetOption filetype=ini %{
|
2015-08-05 20:47:22 +02:00
|
|
|
addhl ref ini-highlighter
|
|
|
|
}
|
|
|
|
|
2016-01-28 20:33:21 +01:00
|
|
|
hook global WinSetOption filetype=(?!ini).* %{
|
2015-08-05 20:47:22 +02:00
|
|
|
rmhl ini-highlighter
|
|
|
|
}
|