blob: e109b2d782fd4205414b7087d8caf4ec464b0d0e (
plain) (
tree)
|
|
if !polyglot#util#IsEnabled('dhall', expand('<sfile>:p'))
finish
endif
" store and remove current syntax value
let old_syntax = b:current_syntax
unlet b:current_syntax
syn include @dhall syntax/dhall.vim
unlet b:current_syntax
syn region dhallBlock matchgroup=quasiQuote start=/\[\$\?staticDhallExpression|/ end=/|\]/ contains=@dhall
hi def link quasiQuote Underlined
" restore current syntax value
let b:current_syntax = old_syntax
|