neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

tt2html.vim (618B)


      1 " Vim syntax file
      2 " Language:      TT2 embedded with HTML
      3 " Maintainer:    vim-perl <vim-perl@googlegroups.com> (need to be subscribed to post)
      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 
     10 if exists("b:current_syntax")
     11    finish
     12 endif
     13 
     14 runtime! syntax/html.vim
     15 unlet b:current_syntax
     16 
     17 runtime! syntax/tt2.vim
     18 unlet b:current_syntax
     19 
     20 syn cluster htmlPreProc add=@tt2_top_cluster
     21 
     22 let b:current_syntax = "tt2html"