1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-23 23:34:12 +03:00
kakoune/rc/filetype/ini.kak

25 lines
709 B
Plaintext
Raw Normal View History

hook global BufCreate .+\.(repo|ini|cfg|properties|desktop) %{
set-option buffer filetype ini
}
hook global WinSetOption filetype=ini %{
2019-03-13 21:15:59 +03:00
require-module ini
}
hook -group ini-highlight global WinSetOption filetype=ini %{
add-highlighter window/ini ref ini
hook -once -always window WinSetOption filetype=.* %{ remove-highlighter window/ini }
}
2019-03-13 21:15:59 +03:00
provide-module ini %{
add-highlighter shared/ini regions
add-highlighter shared/ini/code default-region group
add-highlighter shared/ini/comment region '(^|\h)\K[#;]' $ fill comment
add-highlighter shared/ini/code/ regex "(?S)^\h*(\[.+?\])\h*$" 1:title
add-highlighter shared/ini/code/ regex "^\h*([^\[][^=\n]*)=([^\n]*)" 1:variable 2:value
2019-03-13 21:15:59 +03:00
}