1
0
Fork 0
mirror of synced 2024-05-29 05:21:12 -04:00
ultimate-vim/sources_non_forked/vim-go/syntax/gohtmltmpl.vim
2017-11-24 14:54:40 +01:00

16 lines
247 B
VimL

if exists("b:current_syntax")
finish
endif
if !exists("g:main_syntax")
let g:main_syntax = 'html'
endif
runtime! syntax/gotexttmpl.vim
runtime! syntax/html.vim
unlet b:current_syntax
let b:current_syntax = "gohtmltmpl"
" vim: sw=2 ts=2 et