neovim

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

template.vim (515B)


      1 " Vim syntax file
      2 " Language:	Generic template
      3 " Maintainer:	The Vim Project <https://github.com/vim/vim>
      4 " Last Change:	2023 Aug 10
      5 " Former Maintainer:	Bram Moolenaar <Bram@vim.org>
      6 
      7 " Quit when a (custom) syntax file was already loaded
      8 if exists("b:current_syntax")
      9  finish
     10 endif
     11 
     12 " Known template types are very similar to HTML, E.g. golang and "Xfire User
     13 " Interface Template"
     14 " If you know how to recognize a more specific type for *.tmpl suggest a
     15 " change to runtime/scripts.vim.
     16 runtime! syntax/html.vim