1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-20 09:19:24 +03:00
kakoune/rc/filetype/eruby.kak
2021-06-15 14:30:35 +02:00

27 lines
852 B
Plaintext

# eRuby
# http://www2a.biglobe.ne.jp/~seki/ruby/erb.html
hook global BufCreate '.*\.erb' %{
set-option buffer filetype eruby
}
hook global WinSetOption filetype=eruby %{
require-module eruby
add-highlighter window/eruby ref eruby
hook -group eruby-indent window InsertChar '\n' html-indent-on-new-line
hook -always -once window WinSetOption filetype=.* %{
remove-highlighter window/eruby
remove-hooks window eruby-.+
}
}
provide-module eruby %{
require-module ruby
require-module html
add-highlighter shared/eruby regions
add-highlighter shared/eruby/html default-region ref html
add-highlighter shared/eruby/simple-expression-tag region '<%=' '%>' ref ruby
add-highlighter shared/eruby/simple-execution-tag region '<%' '%>' ref ruby
add-highlighter shared/eruby/simple-comment-tag region '<%#' '%>' fill comment
}