tt2html.vim 586 B

1234567891011121314151617181920212223
  1. " Vim syntax file
  2. " Language: TT2 embedded with HTML
  3. " Maintainer: vim-perl <vim-perl@googlegroups.com>
  4. " Author: Moriki, Atsushi <4woods+vim@gmail.com>
  5. " Homepage: https://github.com/vim-perl/vim-perl
  6. " Bugs/requests: https://github.com/vim-perl/vim-perl/issues
  7. " License: Vim License (see :help license)
  8. " Last Change: 2018 Mar 28
  9. if exists("b:current_syntax")
  10. finish
  11. endif
  12. runtime! syntax/html.vim
  13. unlet b:current_syntax
  14. runtime! syntax/tt2.vim
  15. unlet b:current_syntax
  16. syn cluster htmlPreProc add=@tt2_top_cluster
  17. let b:current_syntax = "tt2html"