1
0
Fork 0
mirror of synced 2024-05-24 19:15:22 -04:00
ultimate-vim/sources_non_forked/vim-go/syntax/gohtmltmpl.vim
Amir Salihefendic 3e3297af67 Updated plugins
2018-06-14 12:31:12 +02:00

18 lines
301 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
syn cluster htmlPreproc add=gotplAction,goTplComment
let b:current_syntax = "gohtmltmpl"
" vim: sw=2 ts=2 et