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
|
|
|
}
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group / regions -default code ini \
|
2015-08-05 20:47:22 +02:00
|
|
|
comment (^|\h)\K\# $ ''
|
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /ini/code regex "^\h*\[[^\]]*\]" 0:title
|
2017-02-10 03:43:29 +01:00
|
|
|
add-highlighter -group /ini/code regex "^\h*([^\[][^=\n]*=)([^\n]*)" 1:variable 2:value
|
2015-08-05 20:47:22 +02:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
add-highlighter -group /ini/comment fill comment
|
2015-08-05 20:47:22 +02:00
|
|
|
|
2017-01-04 01:07:45 +01:00
|
|
|
hook -group ini-highlight global WinSetOption filetype=ini %{ add-highlighter ref ini }
|
|
|
|
hook -group ini-highlight global WinSetOption filetype=(?!ini).* %{ remove-highlighter ini }
|