kakoune/rc/base/ini.kak
Maxime Coste fef0277998 Reorganise rc/ into subdirectories
* core: set of tools to work on kakoune source code
 * base: very common languages and tools
 * extra: less common languages and tools
2016-01-29 09:03:23 +00:00

20 lines
540 B
Plaintext

hook global BufCreate .*\.(repo|service|target|socket|ini|cfg) %{
set buffer filetype ini
}
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
hook global WinSetOption filetype=ini %{
addhl ref ini-highlighter
}
hook global WinSetOption filetype=(?!ini).* %{
rmhl ini-highlighter
}