2018-06-28 00:08:44 +02:00
|
|
|
hook global BufCreate .*\.(repo|service|target|socket|ini|cfg|properties) %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype ini
|
2015-08-05 20:47:22 +02:00
|
|
|
}
|
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/ regions -default code ini \
|
2017-09-30 15:39:57 +02:00
|
|
|
comment '(^|\h)\K[#;]' $ ''
|
2015-08-05 20:47:22 +02:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/ini/code regex "^\h*\[[^\]]*\]" 0:title
|
2018-06-28 00:08:44 +02:00
|
|
|
add-highlighter shared/ini/code regex "^\h*([^\[][^=\n]*)=([^\n]*)" 1:variable 2:value
|
2015-08-05 20:47:22 +02:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
add-highlighter shared/ini/comment fill comment
|
2015-08-05 20:47:22 +02:00
|
|
|
|
2017-10-28 05:00:51 +02:00
|
|
|
hook -group ini-highlight global WinSetOption filetype=ini %{ add-highlighter window ref ini }
|
|
|
|
hook -group ini-highlight global WinSetOption filetype=(?!ini).* %{ remove-highlighter window/ini }
|