1
0
Fork 0
mirror of synced 2024-06-15 13:31:10 -04:00
ultimate-vim/sources_non_forked/vim-go/syntax/gohtmltmpl.vim

18 lines
301 B
VimL
Raw Normal View History

2015-07-13 06:22:46 -04:00
if exists("b:current_syntax")
2016-06-26 07:12:36 -04:00
finish
2015-07-13 06:22:46 -04:00
endif
if !exists("g:main_syntax")
let g:main_syntax = 'html'
2015-07-13 06:22:46 -04:00
endif
runtime! syntax/gotexttmpl.vim
runtime! syntax/html.vim
unlet b:current_syntax
2018-06-14 06:31:12 -04:00
syn cluster htmlPreproc add=gotplAction,goTplComment
2015-07-13 06:22:46 -04:00
let b:current_syntax = "gohtmltmpl"
2016-06-26 07:12:36 -04:00
" vim: sw=2 ts=2 et