Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/vim71/syntax/lifelines.vim
blob: d825a178ae092aaa3567645c3b063e0bccf55065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
" Vim syntax file
" Language:	LifeLines (v 3.0.50) http://lifelines.sourceforge.net
" Maintainer:	Patrick Texier <p.texier@genindre.org>
" Location:	http://www.genindre.org/ftp/lifelines/lifelines.vim
" Last Change:	2005 Dec 22.

" option to highlight error obsolete statements
" add the following line to your .vimrc file or here :
" (level2 is for baptism)

" let lifelines_deprecated=1
" let lifelines_deprecated_level2=1

" For version 5.x: Clear all syntax items
" For version 6.x: Quit when a syntax file was already loaded

if version < 600
  syntax clear
elseif exists("b:current_syntax")
  finish
endif

" A bunch of useful lifelines keywords 3.0.50

syn keyword	lifelinesStatement		set
syn keyword	lifelinesUser			getindi geindiset getfam getint getstr choosechild
syn keyword	lifelinesUser			chooseindi choosespouse choosesubset menuchoose
syn keyword	lifelinesUser			choosefam 
syn keyword	lifelinesProc			proc func return call
syn keyword	lifelinesInclude		include
syn keyword	lifelinesDef			global
syn keyword	lifelinesConditional	if else elsif switch
syn keyword	lifelinesRepeat			continue break while
syn keyword	lifelinesLogical		and or not eq ne lt gt le ge strcmp eqstr nestr
syn keyword	lifelinesArithm			add sub mul div mod exp neg incr decr
syn keyword lifelinesArithm			cos sin tan arccos arcsin arctan
syn keyword lifelinesArithm			deg2dms dms2deg spdist
syn keyword	lifelinesIndi			name fullname surname givens trimname birth
syn keyword	lifelinesIndi			death burial
syn keyword	lifelinesIndi			father mother nextsib prevsib sex male female
syn keyword	lifelinesIndi			pn nspouses nfamilies parents title key
syn keyword	lifelinesIndi			soundex inode root indi firstindi nextindi
syn keyword	lifelinesIndi			previndi spouses families forindi indiset
syn keyword	lifelinesIndi			addtoset deletefromset  union intersect
syn keyword	lifelinesIndi			difference parentset childset spouseset siblingset
syn keyword	lifelinesIndi			ancestorset descendentset descendantset uniqueset
syn keyword	lifelinesIndi			namesort keysort valuesort genindiset getindiset
syn keyword	lifelinesIndi			forindiset lastindi writeindi
syn keyword	lifelinesIndi			inset
syn keyword	lifelinesFam			marriage husband wife nchildren firstchild
syn keyword	lifelinesFam			lastchild fnode fam firstfam nextfam lastfam
syn keyword	lifelinesFam			prevfam children forfam writefam
syn keyword lifelinesFam			fathers mothers Parents
syn keyword	lifelinesList			list empty length enqueue dequeue requeue
syn keyword	lifelinesList			push pop setel getel forlist inlist dup clear
syn keyword	lifelinesTable			table insert lookup
syn keyword	lifelinesGedcom			xref tag value parent child sibling savenode
syn keyword	lifelinesGedcom			fornodes traverse createnode addnode 
syn keyword lifelinesGedcom			detachnode foreven fornotes forothr forsour
syn keyword	lifelinesGedcom			reference dereference getrecord
syn keyword	lifelinesFunct			date place year long short gettoday dayformat
syn keyword	lifelinesFunct			monthformat dateformat extractdate eraformat
syn keyword	lifelinesFunct			complexdate complexformat complexpic datepic
syn keyword	lifelinesFunct			extractnames extractplaces extracttokens lower
syn keyword lifelinesFunct			yearformat
syn keyword	lifelinesFunct			upper capitalize trim rjustify 
syn keyword lifelinesFunct			concat strconcat strlen substring index
syn keyword lifelinesFunct			titlecase gettext
syn keyword	lifelinesFunct			d card ord alpha roman strsoundex strtoint
syn keyword	lifelinesFunct			atoi linemode pagemod col row pos pageout nl
syn keyword	lifelinesFunct			sp qt newfile outfile copyfile print lock unlock test
syn keyword	lifelinesFunct			database version system stddate program
syn keyword	lifelinesFunct			pvalue pagemode level extractdatestr debug
syn keyword	lifelinesFunct			f float int free getcol getproperty heapused
syn keyword lifelinesFunct			sort rsort
syn keyword lifelinesFunct			deleteel
syn keyword lifelinesFunct			bytecode convertcode setlocale

" option to highlight error obsolete statements
" please read ll-reportmanual

if exists("lifelines_deprecated")
	syn keyword lifelinesError			getintmsg getindimsg getstrmsg
	syn keyword	lifelinesError			gengedcom gengedcomstrong gengedcomweak deletenode
	syn keyword lifelinesError			save strsave
	syn keyword	lifelinesError			lengthset
else
	syn keyword lifelinesUser			getintmsg getindimsg getstrmsg
	syn keyword	lifelinesGedcom			gengedcom gengedcomstrong gengedcomweak deletenode
	syn keyword lifelinesFunct			save strsave
	syn keyword	lifelinesIndi			lengthset
endif
if exists("lifelines_deprecated_level2")
	syn keyword	lifelinesError			baptism
else
	syn keyword	lifelinesIndi			baptism
endif

syn region	lifelinesString		start=+L\="+ skip=+\\\\\|\\"+ end=+"+ contains=lifelinesSpecial

syn match	lifelinesSpecial		"\\\(\\\|\(n\|t\)\)" contained

syn region	lifelinesComment	start="/\*"  end="\*/" 

" integers
syn match	lifelinesNumber		"-\=\<\d\+\>"
"floats, with dot
syn match	lifelinesNumber		"-\=\<\d\+\.\d*\>"
"floats, starting with a dot
syn match	lifelinesNumber		"-\=\.\d\+\>"

"catch errors caused by wrong parenthesis
"adapted from original c.vim written by Bram Moolenaar

syn cluster	lifelinesParenGroup	contains=lifelinesParenError
syn region	lifelinesParen		transparent start='(' end=')' contains=ALLBUT,@lifelinesParenGroup
syn match	lifelinesParenError	")"
syn match	lifelinesErrInParen	contained "[{}]"

" Define the default highlighting.
" For version 5.7 and earlier: only when not done already
" For version 5.8 and later: only when an item doesn't have highlighting yet

if version >= 508 || !exists("did_lifelines_syn_inits")
  if version < 508
    let did_lifelines_syn_inits = 1
    command -nargs=+ HiLink hi link <args>
  else
    command -nargs=+ HiLink hi def link <args>
  endif

  HiLink lifelinesConditional	Conditional
  HiLink lifelinesArithm		Operator
  HiLink lifelinesLogical		Conditional
  HiLink lifelinesInclude		Include
  HiLink lifelinesComment		Comment
  HiLink lifelinesStatement		Statement
  HiLink lifelinesUser			Statement
  HiLink lifelinesFunct			Statement
  HiLink lifelinesTable			Statement
  HiLink lifelinesGedcom		Statement
  HiLink lifelinesList			Statement
  HiLink lifelinesRepeat		Repeat
  HiLink lifelinesFam			Statement
  HiLink lifelinesIndi			Statement
  HiLink lifelinesProc			Statement
  HiLink lifelinesDef			Statement
  HiLink lifelinesString		String
  HiLink lifelinesSpecial		Special
  HiLink lifelinesNumber		Number
  HiLink lifelinesParenError	Error
  HiLink lifelinesErrInParen	Error
  HiLink lifelinesError			Error

  delcommand HiLink
endif

let b:current_syntax = "lifelines"

" vim: ts=8