# http://handlebarsjs.com/ # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ # Detection # ‾‾‾‾‾‾‾‾‾ hook global BufCreate .*[.](hbs) %{ set-option buffer filetype hbs } # Highlighters # ‾‾‾‾‾‾‾‾‾‾‾‾ add-highlighter shared/ regions -default html hbs \ comment \{\{!-- --\}\} '' \ comment \{\{! \}\} '' \ block-expression \{\{ \}\} '' add-highlighter shared/hbs/html ref html add-highlighter shared/hbs/comment fill comment 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 s \h+$ 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 s ^\h*\K/\h* y j p } # preserve previous line indent try %{ execute-keys -draft \; K } # filter previous line try %{ execute-keys -draft k : hbs-filter-around-selections } # indent after lines beginning with : or - try %{ execute-keys -draft k ^\h*[:-] j } } } # Initialization # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ hook -group hbs-highlight global WinSetOption filetype=hbs %{ add-highlighter window 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 }