mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-11 01:37:41 +03:00
15 lines
584 B
Plaintext
15 lines
584 B
Plaintext
hook global BufCreate .*\.(repo|service|target|socket|ini|cfg) %{
|
|
set-option buffer filetype ini
|
|
}
|
|
|
|
add-highlighter shared/ regions -default code ini \
|
|
comment '(^|\h)\K[#;]' $ ''
|
|
|
|
add-highlighter shared/ini/code regex "^\h*\[[^\]]*\]" 0:title
|
|
add-highlighter shared/ini/code regex "^\h*([^\[][^=\n]*=)([^\n]*)" 1:variable 2:value
|
|
|
|
add-highlighter shared/ini/comment fill comment
|
|
|
|
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 }
|