tt2js.vim 592 B

1234567891011121314151617181920212223
  1. " Vim syntax file
  2. " Language: TT2 embedded with Javascript
  3. " Maintainer: Andy Lester <andy@petdance.com>
  4. " Author: Yates, Peter <pd.yates@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/javascript.vim
  13. unlet b:current_syntax
  14. runtime! syntax/tt2.vim
  15. unlet b:current_syntax
  16. syn cluster javascriptPreProc add=@tt2_top_cluster
  17. let b:current_syntax = "tt2js"