1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 16:49:42 +00:00
Files
dotdrop/highlighters/kakoune/dotdrop.kak
2021-03-31 18:03:14 +02:00

19 lines
828 B
Plaintext
Vendored

hook global WinCreate .* %{
require-module python
add-highlighter window/dotdrop regions
add-highlighter window/dotdrop/expression region '\{\{@[@]' '[@]@\}\}' group
add-highlighter window/dotdrop/statement region '\{%@[@]' '[@]@%\}' group
add-highlighter window/dotdrop/comment region '\{#@[@]' '[@]@#\}' fill comment
add-highlighter window/dotdrop/expression/ fill variable
add-highlighter window/dotdrop/statement/ fill variable
add-highlighter window/dotdrop/expression/ ref python
add-highlighter window/dotdrop/statement/ ref python
add-highlighter window/dotdrop/expression/ regex '\{\{@[@]|[@]@\}\}' 0:block
add-highlighter window/dotdrop/statement/ regex '\{%@[@]|[@]@%\}' 0:block
add-highlighter window/dotdrop/statement/ regex 'endfor|endif' 0:keyword
}