2022-02-09 16:13:29 +01:00
|
|
|
hook global BufCreate .+\.ini %{
|
2017-11-03 08:34:41 +01:00
|
|
|
set-option buffer filetype ini
|
2015-08-05 20:47:22 +02:00
|
|
|
}
|
|
|
|
|
2019-04-12 00:54:58 +02:00
|
|
|
hook global WinSetOption filetype=ini %{
|
2019-03-13 19:15:59 +01:00
|
|
|
require-module ini
|
|
|
|
}
|
|
|
|
|
2019-04-12 00:54:58 +02:00
|
|
|
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 19:15:59 +01:00
|
|
|
provide-module ini %{
|
|
|
|
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/ini regions
|
|
|
|
add-highlighter shared/ini/code default-region group
|
2018-07-02 12:59:12 +02:00
|
|
|
add-highlighter shared/ini/comment region '(^|\h)\K[#;]' $ fill comment
|
2015-08-05 20:47:22 +02:00
|
|
|
|
2020-05-14 09:24:24 +02:00
|
|
|
add-highlighter shared/ini/code/ regex "(?S)^\h*(\[.+?\])\h*$" 1:title
|
2018-07-01 11:53:35 +02:00
|
|
|
add-highlighter shared/ini/code/ regex "^\h*([^\[][^=\n]*)=([^\n]*)" 1:variable 2:value
|
2015-08-05 20:47:22 +02:00
|
|
|
|
2019-03-13 19:15:59 +01:00
|
|
|
}
|