home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / mac / vim55rt.sit / runtime / syntax / htmlm4.vim < prev    next >
Encoding:
Text File  |  1999-09-25  |  588 b   |  27 lines  |  [TEXT/VIM!]

  1. " Vim syntax file
  2. " Language:    HTML and M4
  3. " Maintainer:    Claudio Fleiner <claudio@fleiner.com>
  4. " URL:        http://www.fleiner.com/vim/syntax/htmlm4.vim
  5. " Last change:    1999 May 20
  6.  
  7. " Remove any old syntax stuff hanging around
  8.  
  9. " we define it here so that included files can test for it
  10. if !exists("main_syntax")
  11.   syn clear
  12.   let main_syntax='htmlm4'
  13. endif
  14.  
  15. so <sfile>:p:h/html.vim
  16. syn case match
  17.  
  18. so <sfile>:p:h/m4.vim
  19. syn cluster htmlPreproc add=@m4Top
  20. syn cluster m4StringContents add=htmlTag,htmlEndTag
  21.  
  22. let b:current_syntax = "htmlm4"
  23.  
  24. if main_syntax == 'htmlm4'
  25.   unlet main_syntax
  26. endif
  27.