1
0
Fork 0
mirror of synced 2025-03-14 18:01:00 -04:00
ultimate-vim/sources_non_forked/vim-go/syntax/gohtmltmpl.vim

16 lines
243 B
VimL
Raw Normal View History

2015-07-13 11:22:46 +01:00
if exists("b:current_syntax")
2016-06-26 13:12:36 +02:00
finish
2015-07-13 11:22:46 +01:00
endif
if !exists("main_syntax")
2016-06-26 13:12:36 +02:00
let main_syntax = 'html'
2015-07-13 11:22:46 +01:00
endif
runtime! syntax/gotexttmpl.vim
runtime! syntax/html.vim
unlet b:current_syntax
let b:current_syntax = "gohtmltmpl"
2016-06-26 13:12:36 +02:00
" vim: sw=2 ts=2 et