74 lines
2.5 KiB
Plaintext
74 lines
2.5 KiB
Plaintext
# http://handlebarsjs.com/
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
# Detection
|
|
# ‾‾‾‾‾‾‾‾‾
|
|
|
|
hook global BufCreate .*[.](hbs) %{
|
|
set-option buffer filetype hbs
|
|
}
|
|
|
|
# Highlighters
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
add-highlighter shared/hbs regions
|
|
add-highlighter shared/hbs/html default-region ref html
|
|
add-highlighter shared/hbs/comment region -recurse ' ' \{\{!-- --\}\} fill comment
|
|
add-highlighter shared/hbs/comment_alt region \{\{! \}\} fill comment
|
|
add-highlighter shared/hbs/block-expression region \{\{ \}\} group
|
|
|
|
add-highlighter shared/hbs/block-expression/ regex \{\{((#|/|)(\w|-)+) 1:meta
|
|
|
|
# some hbs tags have a special meaning
|
|
add-highlighter shared/hbs/block-expression/ regex \{\{((#|/|)(if|else|unless|with|lookup|log)) 1:keyword
|
|
|
|
# 'each' is special as it really is two words 'each' and 'as'
|
|
add-highlighter shared/hbs/block-expression/ regex \{\{((#|/|)((each).*(as))) 2:keyword 4:keyword 5:keyword
|
|
|
|
add-highlighter shared/hbs/block-expression/ regex ((\w|-)+)= 1:attribute
|
|
|
|
# highlight the string values of attributes as a bonus
|
|
add-highlighter shared/hbs/block-expression/ regex ((\w|-)+)=(('|").*?('|")) 1:attribute 3:value
|
|
|
|
# Commands
|
|
# ‾‾‾‾‾‾‾‾
|
|
|
|
define-command -hidden hbs-filter-around-selections %{
|
|
# remove trailing white spaces
|
|
try %{ execute-keys -draft -itersel <a-x> s \h+$ <ret> d }
|
|
}
|
|
|
|
define-command -hidden hbs-indent-on-new-line %{
|
|
evaluate-commands -draft -itersel %{
|
|
# copy '/' comment prefix and following white spaces
|
|
try %{ execute-keys -draft k <a-x> s ^\h*\K/\h* <ret> y j p }
|
|
# preserve previous line indent
|
|
try %{ execute-keys -draft \; K <a-&> }
|
|
# filter previous line
|
|
try %{ execute-keys -draft k : hbs-filter-around-selections <ret> }
|
|
# indent after lines beginning with : or -
|
|
try %{ execute-keys -draft k <a-x> <a-k> ^\h*[:-] <ret> j <a-gt> }
|
|
}
|
|
}
|
|
|
|
# Initialization
|
|
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
|
|
|
|
hook -group hbs-highlight global WinSetOption filetype=hbs %{
|
|
add-highlighter window/hbs ref hbs
|
|
}
|
|
|
|
hook global WinSetOption filetype=hbs %{
|
|
hook window ModeChange insert:.* -group hbs-hooks hbs-filter-around-selections
|
|
hook window InsertChar \n -group hbs-indent hbs-indent-on-new-line
|
|
}
|
|
|
|
hook -group hbs-highlight global WinSetOption filetype=(?!hbs).* %{
|
|
remove-highlighter window/hbs
|
|
}
|
|
|
|
hook global WinSetOption filetype=(?!hbs).* %{
|
|
remove-hooks window hbs-indent
|
|
remove-hooks window hbs-hooks
|
|
}
|