2016-01-12 23:25:47 +03:00
|
|
|
hook global BufCreate .*\.(repo|service|target|socket|ini|cfg) %{
|
2016-01-28 22:33:21 +03:00
|
|
|
set buffer filetype ini
|
2015-08-05 21:47:22 +03:00
|
|
|
}
|
|
|
|
|
2017-01-04 03:07:45 +03:00
|
|
|
add-highlighter -group / regions -default code ini \
|
2015-08-05 21:47:22 +03:00
|
|
|
comment (^|\h)\K\# $ ''
|
|
|
|
|
2017-01-04 03:07:45 +03:00
|
|
|
add-highlighter -group /ini/code regex "^\h*\[[^\]]*\]" 0:title
|
2017-02-10 05:43:29 +03:00
|
|
|
add-highlighter -group /ini/code regex "^\h*([^\[][^=\n]*=)([^\n]*)" 1:variable 2:value
|
2015-08-05 21:47:22 +03:00
|
|
|
|
2017-01-04 03:07:45 +03:00
|
|
|
add-highlighter -group /ini/comment fill comment
|
2015-08-05 21:47:22 +03:00
|
|
|
|
2017-01-04 03:07:45 +03:00
|
|
|
hook -group ini-highlight global WinSetOption filetype=ini %{ add-highlighter ref ini }
|
|
|
|
hook -group ini-highlight global WinSetOption filetype=(?!ini).* %{ remove-highlighter ini }
|