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 / runtime / dos / syntax / libao.vim < prev    next >
Encoding:
Text File  |  2010-08-15  |  651 b   |  28 lines

  1. " Vim syntax file
  2. " Language:         libao.conf(5) configuration file
  3. " Maintainer:       Nikolai Weibull <now@bitwi.se>
  4. " Latest Revision:  2006-04-19
  5.  
  6. if exists("b:current_syntax")
  7.   finish
  8. endif
  9.  
  10. let s:cpo_save = &cpo
  11. set cpo&vim
  12.  
  13. syn keyword libaoTodo     contained TODO FIXME XXX NOTE
  14.  
  15. syn region  libaoComment  display oneline start='^\s*#' end='$'
  16.                           \ contains=libaoTodo,@Spell
  17.  
  18. syn keyword libaoKeyword  default_driver
  19.  
  20. hi def link libaoTodo     Todo
  21. hi def link libaoComment  Comment
  22. hi def link libaoKeyword  Keyword
  23.  
  24. let b:current_syntax = "libao"
  25.  
  26. let &cpo = s:cpo_save
  27. unlet s:cpo_save
  28.