Mercurial > vim
annotate runtime/syntax/trasys.vim @ 20607:9f5f64cc9720 v8.2.0857
patch 8.2.0857: GTK cell height can be a pixel too much
Commit: https://github.com/vim/vim/commit/5cd1cb9ff9d04979ff4cbc36ca8416d83364505d
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun May 31 13:53:04 2020 +0200
patch 8.2.0857: GTK cell height can be a pixel too much
Problem: GTK cell height can be a pixel too much.
Solution: Subtract 3 instead of 1 when rounding. (closes https://github.com/vim/vim/issues/6168)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 31 May 2020 14:00:03 +0200 |
parents | 46763b01cd9a |
children |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: TRASYS input file | |
3 " Maintainer: Adrian Nagle, anagle@ball.com | |
4 " Last Change: 2003 May 11 | |
5 " Filenames: *.inp | |
6 " URL: http://www.naglenet.org/vim/syntax/trasys.vim | |
7 " MAIN URL: http://www.naglenet.org/vim/ | |
8 | |
9 | |
10 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
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:
7
diff
changeset
|
12 if exists("b:current_syntax") |
7 | 13 finish |
14 endif | |
15 | |
16 | |
17 " Force free-form fortran format | |
18 let fortran_free_source=1 | |
19 | |
20 " Load FORTRAN syntax file | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
21 runtime! syntax/fortran.vim |
7 | 22 unlet b:current_syntax |
23 | |
24 | |
25 " Ignore case | |
26 syn case ignore | |
27 | |
28 | |
29 | |
30 " Define keywords for TRASYS | |
31 syn keyword trasysOptions model rsrec info maxfl nogo dmpdoc | |
32 syn keyword trasysOptions rsi rti rso rto bcdou cmerg emerg | |
33 syn keyword trasysOptions user1 nnmin erplot | |
34 | |
35 syn keyword trasysSurface icsn tx ty tz rotx roty rotz inc bcsn | |
36 syn keyword trasysSurface nnx nny nnz nnax nnr nnth unnx | |
37 syn keyword trasysSurface unny unnz unnax unnr unnth type idupsf | |
38 syn keyword trasysSurface imagsf act active com shade bshade axmin | |
39 syn keyword trasysSurface axmax zmin zmax rmin rmax thmin thmin | |
40 syn keyword trasysSurface thmax alpha emiss trani trans spri sprs | |
41 syn keyword trasysSurface refno posit com dupbcs dimensions | |
42 syn keyword trasysSurface dimension position prop surfn | |
43 | |
44 syn keyword trasysSurfaceType rect trap disk cyl cone sphere parab | |
45 syn keyword trasysSurfaceType box5 box6 shpero tor ogiv elem tape poly | |
46 | |
47 syn keyword trasysSurfaceArgs ff di top bottom in out both no only | |
48 | |
49 syn keyword trasysArgs fig smn nodea zero only ir sol | |
50 syn keyword trasysArgs both wband stepn initl | |
51 | |
52 syn keyword trasysOperations orbgen build | |
53 | |
54 "syn keyword trasysSubRoutine call | |
55 syn keyword trasysSubRoutine chgblk ndata ndatas odata odatas | |
56 syn keyword trasysSubRoutine pldta ffdata cmdata adsurf rbdata | |
57 syn keyword trasysSubRoutine rtdata pffshd orbit1 orbit2 orient | |
58 syn keyword trasysSubRoutine didt1 didt1s didt2 didt2s spin | |
59 syn keyword trasysSubRoutine spinav dicomp distab drdata gbdata | |
60 syn keyword trasysSubRoutine gbaprx rkdata rcdata aqdata stfaq | |
61 syn keyword trasysSubRoutine qodata qoinit modar modpr modtr | |
62 syn keyword trasysSubRoutine modprs modshd moddat rstoff rston | |
63 syn keyword trasysSubRoutine rsmerg ffread diread ffusr1 diusr1 | |
64 syn keyword trasysSubRoutine surfp didt3 didt3s romain stfrc | |
65 syn keyword trasysSubRoutine rornt rocstr romove flxdata title | |
66 | |
67 syn keyword trassyPrcsrSegm nplot oplot plot cmcal ffcal rbcal | |
68 syn keyword trassyPrcsrSegm rtcal dical drcal sfcal gbcal rccal | |
69 syn keyword trassyPrcsrSegm rkcal aqcal qocal | |
70 | |
71 | |
72 | |
73 " Define matches for TRASYS | |
74 syn match trasysOptions "list source" | |
75 syn match trasysOptions "save source" | |
76 syn match trasysOptions "no print" | |
77 | |
78 "syn match trasysSurface "^K *.* [^$]" | |
79 "syn match trasysSurface "^D *[0-9]*\.[0-9]\+" | |
80 "syn match trasysSurface "^I *.*[0-9]\+\.\=" | |
81 "syn match trasysSurface "^N *[0-9]\+" | |
82 "syn match trasysSurface "^M *[a-z[A-Z0-9]\+" | |
83 "syn match trasysSurface "^B[C][S] *[a-zA-Z0-9]*" | |
84 "syn match trasysSurface "^S *SURFN.*[0-9]" | |
85 syn match trasysSurface "P[0-9]* *="he=e-1 | |
86 | |
87 syn match trasysIdentifier "^L "he=e-1 | |
88 syn match trasysIdentifier "^K "he=e-1 | |
89 syn match trasysIdentifier "^D "he=e-1 | |
90 syn match trasysIdentifier "^I "he=e-1 | |
91 syn match trasysIdentifier "^N "he=e-1 | |
92 syn match trasysIdentifier "^M "he=e-1 | |
93 syn match trasysIdentifier "^B[C][S]" | |
94 syn match trasysIdentifier "^S "he=e-1 | |
95 | |
96 syn match trasysComment "^C.*$" | |
97 syn match trasysComment "^R.*$" | |
98 syn match trasysComment "\$.*$" | |
99 | |
100 syn match trasysHeader "^header[^,]*" | |
101 | |
102 syn match trasysMacro "^FAC" | |
103 | |
104 syn match trasysInteger "-\=\<[0-9]*\>" | |
105 syn match trasysFloat "-\=\<[0-9]*\.[0-9]*" | |
106 syn match trasysScientific "-\=\<[0-9]*\.[0-9]*E[-+]\=[0-9]\+\>" | |
107 | |
108 syn match trasysBlank "' \+'"hs=s+1,he=e-1 | |
109 | |
110 syn match trasysEndData "^END OF DATA" | |
111 | |
112 if exists("thermal_todo") | |
113 execute 'syn match trasysTodo ' . '"^'.thermal_todo.'.*$"' | |
114 else | |
115 syn match trasysTodo "^?.*$" | |
116 endif | |
117 | |
118 | |
119 | |
120 " Define regions for TRASYS | |
121 syn region trasysComment matchgroup=trasysHeader start="^HEADER DOCUMENTATION DATA" end="^HEADER[^,]*" | |
122 | |
123 | |
124 | |
125 " Define synchronizing patterns for TRASYS | |
126 syn sync maxlines=500 | |
127 syn sync match trasysSync grouphere trasysComment "^HEADER DOCUMENTATION DATA" | |
128 | |
129 | |
130 | |
131 " Define the default highlighting | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
7
diff
changeset
|
132 " Only when an item doesn't have highlighting yet |
7 | 133 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
134 hi def link trasysOptions Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
135 hi def link trasysSurface Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
136 hi def link trasysSurfaceType Constant |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
137 hi def link trasysSurfaceArgs Constant |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
138 hi def link trasysArgs Constant |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
139 hi def link trasysOperations Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
140 hi def link trasysSubRoutine Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
141 hi def link trassyPrcsrSegm PreProc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
142 hi def link trasysIdentifier Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
143 hi def link trasysComment Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
144 hi def link trasysHeader Typedef |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
145 hi def link trasysMacro Macro |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
146 hi def link trasysInteger Number |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
147 hi def link trasysFloat Float |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
148 hi def link trasysScientific Float |
7 | 149 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
150 hi def link trasysBlank SpecialChar |
7 | 151 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
152 hi def link trasysEndData Macro |
7 | 153 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
154 hi def link trasysTodo Todo |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
155 |
7 | 156 |
157 | |
158 let b:current_syntax = "trasys" | |
159 | |
160 " vim: ts=8 sw=2 |