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 / master.vim < prev    next >
Encoding:
Text File  |  1999-09-25  |  972 b   |  35 lines  |  [TEXT/VIM!]

  1. " Vim syntax file
  2. " Language:    Focus Master File
  3. " Maintainer:    Rob Brady <robb@datatone.com>
  4. " Last Change:    $Date: 1999/08/13 06:51:26 $
  5. " URL: http://www.datatone.com/~robb/vim/syntax/master.vim
  6. " $Revision: 1.4 $
  7.  
  8. " this is a very simple syntax file - I will be improving it
  9. " add entire DEFINE syntax
  10.  
  11. " Remove any old syntax stuff hanging around
  12. syn clear
  13.  
  14. syn case match
  15.  
  16. " A bunch of useful keywords
  17. syn keyword masterKeyword    FILENAME SUFFIX SEGNAME SEGTYPE PARENT FIELDNAME
  18. syn keyword masterKeyword    FIELD ALIAS USAGE INDEX MISSING ON
  19. syn keyword masterKeyword    FORMAT CRFILE CRKEY
  20. syn keyword masterDefine    DEFINE DECODE EDIT
  21. syn region  masterString    start=+"+  end=+"+
  22. syn region  masterString    start=+'+  end=+'+
  23. syn match   masterComment    "\$.*"
  24.  
  25. if !exists("did_master_syntax_inits")
  26.   let did_master_syntax_inits = 1
  27.   hi link masterKeyword Keyword
  28.   hi link masterComment Comment
  29.   hi link masterString  String
  30. endif
  31.  
  32. let b:current_syntax = "master"
  33.  
  34. " vim: ts=8
  35.