neovim

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

master.vim (1022B)


      1 " Vim syntax file
      2 " Language:	Focus Master File
      3 " Maintainer:	Rob Brady <robb@datatone.com>
      4 " Last Change:	$Date: 2004/06/13 15:54:03 $
      5 " URL: http://www.datatone.com/~robb/vim/syntax/master.vim
      6 " $Revision: 1.1 $
      7 
      8 " this is a very simple syntax file - I will be improving it
      9 " add entire DEFINE syntax
     10 
     11 " quit when a syntax file was already loaded
     12 if exists("b:current_syntax")
     13  finish
     14 endif
     15 
     16 syn case match
     17 
     18 " A bunch of useful keywords
     19 syn keyword masterKeyword	FILENAME SUFFIX SEGNAME SEGTYPE PARENT FIELDNAME
     20 syn keyword masterKeyword	FIELD ALIAS USAGE INDEX MISSING ON
     21 syn keyword masterKeyword	FORMAT CRFILE CRKEY
     22 syn keyword masterDefine	DEFINE DECODE EDIT
     23 syn region  masterString	start=+"+  end=+"+
     24 syn region  masterString	start=+'+  end=+'+
     25 syn match   masterComment	"\$.*"
     26 
     27 " Define the default highlighting.
     28 " Only when an item doesn't have highlighting yet
     29 
     30 hi def link masterKeyword Keyword
     31 hi def link masterComment Comment
     32 hi def link masterString  String
     33 
     34 
     35 let b:current_syntax = "master"
     36 
     37 " vim: ts=8