Mercurial > vim
annotate runtime/syntax/master.vim @ 16671:10cee1b8fcb3
Added tag v8.1.1337 for changeset 5733d8e33bce39f498143f923a370874ec78ee7d
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Fri, 17 May 2019 11:15:07 +0200 |
parents | 46763b01cd9a |
children |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Focus Master File | |
3 " Maintainer: Rob Brady <robb@datatone.com> | |
2034 | 4 " Last Change: $Date: 2004/06/13 15:54:03 $ |
7 | 5 " URL: http://www.datatone.com/~robb/vim/syntax/master.vim |
2034 | 6 " $Revision: 1.1 $ |
7 | 7 |
8 " this is a very simple syntax file - I will be improving it | |
9 " add entire DEFINE syntax | |
10 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2034
diff
changeset
|
11 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2034
diff
changeset
|
12 if exists("b:current_syntax") |
7 | 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. | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2034
diff
changeset
|
28 " Only when an item doesn't have highlighting yet |
7 | 29 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
30 hi def link masterKeyword Keyword |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
31 hi def link masterComment Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
32 hi def link masterString String |
7 | 33 |
34 | |
35 let b:current_syntax = "master" | |
36 | |
37 " vim: ts=8 |