Change html highlighting to be ref inside of hbs highlighting

This commit is contained in:
Matt Schick 2017-01-08 17:29:36 -08:00
parent 9dfd17a5bc
commit e1833801f8

View File

@ -16,6 +16,7 @@ addhl -group / regions -default html hbs \
comment {{! }} '' \ comment {{! }} '' \
block-expression {{ }} '' block-expression {{ }} ''
addhl -group /hbs/html ref html
addhl -group /hbs/comment fill comment addhl -group /hbs/comment fill comment
addhl -group /hbs/block-expression regex {{((#|/|)(\w|-)+) 1:meta addhl -group /hbs/block-expression regex {{((#|/|)(\w|-)+) 1:meta
@ -54,9 +55,8 @@ def -hidden _hbs_indent_on_new_line %{
# Initialization # Initialization
# ‾‾‾‾‾‾‾‾‾‾‾‾‾‾ # ‾‾‾‾‾‾‾‾‾‾‾‾‾‾
hook -group hbs-highlight global WinSetOption filetype=hbs %{ hook -group hbs-highlight global WinSetOption filetype=hbs %{
addhl ref hbs addhl ref hbs
addhl ref html
} }
hook global WinSetOption filetype=hbs %{ hook global WinSetOption filetype=hbs %{
@ -64,9 +64,8 @@ hook global WinSetOption filetype=hbs %{
hook window InsertChar \n -group hbs-indent _hbs_indent_on_new_line hook window InsertChar \n -group hbs-indent _hbs_indent_on_new_line
} }
hook -group hbs-highlight global WinSetOption filetype=(?!hbs).* %{ hook -group hbs-highlight global WinSetOption filetype=(?!hbs).* %{
rmhl hbs rmhl hbs
rmhl html
} }
hook global WinSetOption filetype=(?!hbs).* %{ hook global WinSetOption filetype=(?!hbs).* %{