Mercurial > vim
annotate runtime/syntax/fortran.vim @ 30489:1e4d93103d01 v9.0.0580
patch 9.0.0580: no CI running for MacOS on M1
Commit: https://github.com/vim/vim/commit/1d61408af31667669edcbffc876e4eafdcacca96
Author: Philip H <47042125+pheiduck@users.noreply.github.com>
Date: Sat Sep 24 19:32:11 2022 +0100
patch 9.0.0580: no CI running for MacOS on M1
Problem: No CI running for MacOS on M1.
Solution: Add a cirrus CI task. (closes https://github.com/vim/vim/issues/11203)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 24 Sep 2022 20:45:03 +0200 |
parents | 5c98ea5f5d6e |
children | 596118de3216 |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
2 " Language: Fortran 2008 (and older: Fortran 2003, 95, 90, and 77) |
24387 | 3 " Version: (v104) 2021 April 06 |
6530 | 4 " Maintainer: Ajit J. Thakkar <ajit@unb.ca>; <http://www2.unb.ca/~ajit/> |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
5 " Usage: For instructions, do :help fortran-syntax from Vim |
7 | 6 " Credits: |
22565 | 7 " Version 0.1 for Fortran 95 was created in April 2000 by Ajit Thakkar from an |
8 " older Fortran 77 syntax file by Mario Eusebio and Preben Guldberg. | |
18719 | 9 " Since then, useful suggestions and contributions have been made, in order, by: |
8303
88207f4b861a
commit https://github.com/vim/vim/commit/dae8d21dd291df6a6679a00be64e18bca0156576
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
10 " Andrej Panjkov, Bram Moolenaar, Thomas Olsen, Michael Sternberg, Christian Reile, |
24387 | 11 " Walter Dieudonne, Alexander Wagner, Roman Bertle, Charles Rendleman, |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
12 " Andrew Griffiths, Joe Krahn, Hendrik Merx, Matt Thompson, Jan Hermann, |
24387 | 13 " Stefano Zaghi, Vishnu V. Krishnan, Judicael Grasset, Takuma Yoshida, |
14 " Eisuke Kawashima, Andre Chalella, and Fritz Reese. | |
7 | 15 |
3281 | 16 if exists("b:current_syntax") |
7 | 17 finish |
18 endif | |
19 | |
3237 | 20 let s:cpo_save = &cpo |
21 set cpo&vim | |
22 | |
3281 | 23 " Choose fortran_dialect using the priority: |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
24 " source file directive > buffer-local value > global value > file extension |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
25 " first try using directive in first three lines of file |
3281 | 26 let b:fortran_retype = getline(1)." ".getline(2)." ".getline(3) |
27 if b:fortran_retype =~? '\<fortran_dialect\s*=\s*F\>' | |
28 let b:fortran_dialect = "F" | |
29 elseif b:fortran_retype =~? '\<fortran_dialect\s*=\s*f08\>' | |
30 let b:fortran_dialect = "f08" | |
31 elseif !exists("b:fortran_dialect") | |
32 if exists("g:fortran_dialect") && g:fortran_dialect =~# '\<F\|f08\>' | |
33 " try global variable | |
34 let b:fortran_dialect = g:fortran_dialect | |
35 else " nothing found, so use default | |
36 let b:fortran_dialect = "f08" | |
7 | 37 endif |
38 endif | |
3281 | 39 unlet! b:fortran_retype |
40 " make sure buffer-local value is not invalid | |
41 if b:fortran_dialect !~# '\<F\|f08\>' | |
42 let b:fortran_dialect = "f08" | |
7 | 43 endif |
44 | |
45 " Choose between fixed and free source form if this hasn't been done yet | |
46 if !exists("b:fortran_fixed_source") | |
3281 | 47 if b:fortran_dialect == "F" |
48 " F requires free source form | |
7 | 49 let b:fortran_fixed_source = 0 |
50 elseif exists("fortran_free_source") | |
3281 | 51 " User guarantees free source form for all fortran files |
7 | 52 let b:fortran_fixed_source = 0 |
53 elseif exists("fortran_fixed_source") | |
3281 | 54 " User guarantees fixed source form for all fortran files |
7 | 55 let b:fortran_fixed_source = 1 |
20115 | 56 elseif expand("%:e") =~? '^f\%(90\|95\|03\|08\)$' |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
57 " Free-form file extension defaults as in Intel ifort, gcc(gfortran), NAG, Pathscale, and Cray compilers |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
58 let b:fortran_fixed_source = 0 |
20115 | 59 elseif expand("%:e") =~? '^\%(f\|f77\|for\)$' |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
60 " Fixed-form file extension defaults |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
61 let b:fortran_fixed_source = 1 |
7 | 62 else |
3281 | 63 " Modern fortran still allows both free and fixed source form. |
7 | 64 " Assume fixed source form unless signs of free source form |
2377
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
65 " are detected in the first five columns of the first s:lmax lines. |
7 | 66 " Detection becomes more accurate and time-consuming if more lines |
67 " are checked. Increase the limit below if you keep lots of comments at | |
68 " the very top of each file and you have a fast computer. | |
2377
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
69 let s:lmax = 500 |
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
70 if ( s:lmax > line("$") ) |
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
71 let s:lmax = line("$") |
7 | 72 endif |
73 let b:fortran_fixed_source = 1 | |
2377
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
74 let s:ln=1 |
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
75 while s:ln <= s:lmax |
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
76 let s:test = strpart(getline(s:ln),0,5) |
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
77 if s:test !~ '^[Cc*]' && s:test !~ '^ *[!#]' && s:test =~ '[^ 0-9\t]' && s:test !~ '^[ 0-9]*\t' |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
78 let b:fortran_fixed_source = 0 |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
79 break |
7 | 80 endif |
2377
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
81 let s:ln = s:ln + 1 |
7 | 82 endwhile |
2377
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
83 unlet! s:lmax s:ln s:test |
7 | 84 endif |
85 endif | |
86 | |
87 syn case ignore | |
88 | |
3281 | 89 if b:fortran_fixed_source == 1 |
90 syn match fortranConstructName "^\s\{6,}\zs\a\w*\ze\s*:" | |
91 else | |
92 syn match fortranConstructName "^\s*\zs\a\w*\ze\s*:" | |
93 endif | |
94 if exists("fortran_more_precise") | |
18719 | 95 syn match fortranConstructName "\(\<end\s*do\s\+\)\@11<=\a\w*" |
96 syn match fortranConstructName "\(\<end\s*if\s\+\)\@11<=\a\w*" | |
97 syn match fortranConstructName "\(\<end\s*select\s\+\)\@15<=\a\w*" | |
7 | 98 endif |
99 | |
3281 | 100 syn match fortranUnitHeader "\<end\>" |
819 | 101 syn match fortranType "\<character\>" |
102 syn match fortranType "\<complex\>" | |
103 syn match fortranType "\<integer\>" | |
22565 | 104 syn match fortranType "\<real\>" |
105 syn match fortranType "\<logical\>" | |
7 | 106 syn keyword fortranType intrinsic |
107 syn match fortranType "\<implicit\>" | |
108 syn keyword fortranStructure dimension | |
109 syn keyword fortranStorageClass parameter save | |
110 syn match fortranUnitHeader "\<subroutine\>" | |
111 syn keyword fortranCall call | |
112 syn match fortranUnitHeader "\<function\>" | |
113 syn match fortranUnitHeader "\<program\>" | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
114 syn match fortranUnitHeader "\<block\>" |
819 | 115 syn keyword fortranKeyword return stop |
7 | 116 syn keyword fortranConditional else then |
117 syn match fortranConditional "\<if\>" | |
3256 | 118 syn match fortranConditionalOb "\<if\s*(.*)\s*\d\+\s*,\s*\d\+\s*,\s*\d\+\s*$" |
7 | 119 syn match fortranRepeat "\<do\>" |
120 | |
121 syn keyword fortranTodo contained todo fixme | |
122 | |
123 "Catch errors caused by too many right parentheses | |
819 | 124 syn region fortranParen transparent start="(" end=")" contains=ALLBUT,fortranParenError,@fortranCommentGroup,cIncluded,@spell |
7 | 125 syn match fortranParenError ")" |
126 | |
127 syn match fortranOperator "\.\s*n\=eqv\s*\." | |
128 syn match fortranOperator "\.\s*\(and\|or\|not\)\s*\." | |
129 syn match fortranOperator "\(+\|-\|/\|\*\)" | |
3281 | 130 syn match fortranTypeOb "\<character\s*\*" |
7 | 131 |
132 syn match fortranBoolean "\.\s*\(true\|false\)\s*\." | |
133 | |
819 | 134 syn keyword fortranReadWrite backspace close endfile inquire open print read rewind write |
7 | 135 |
136 "If tabs are allowed then the left margin checks do not work | |
137 if exists("fortran_have_tabs") | |
138 syn match fortranTab "\t" transparent | |
139 else | |
140 syn match fortranTab "\t" | |
141 endif | |
142 | |
819 | 143 syn keyword fortranIO access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit |
7 | 144 |
3281 | 145 syn keyword fortranIntrinsicR alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl |
7 | 146 |
147 " Intrinsics provided by some vendors | |
3256 | 148 syn keyword fortranExtraIntrinsic algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh |
7 | 149 |
3281 | 150 syn keyword fortranIntrinsic abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh |
151 syn match fortranIntrinsic "\<len\s*[(,]"me=s+3 | |
152 syn match fortranIntrinsic "\<real\s*("me=s+4 | |
153 syn match fortranIntrinsic "\<logical\s*("me=s+7 | |
22565 | 154 syn match fortranType "\<implicit\s\+real\>" |
155 syn match fortranType "\<implicit\s\+logical\>" | |
7 | 156 |
157 "Numbers of various sorts | |
158 " Integers | |
159 syn match fortranNumber display "\<\d\+\(_\a\w*\)\=\>" | |
160 " floating point number, without a decimal point | |
3281 | 161 syn match fortranFloatIll display "\<\d\+[deq][-+]\=\d\+\(_\a\w*\)\=\>" |
7 | 162 " floating point number, starting with a decimal point |
3281 | 163 syn match fortranFloatIll display "\.\d\+\([deq][-+]\=\d\+\)\=\(_\a\w*\)\=\>" |
7 | 164 " floating point number, no digits after decimal |
3281 | 165 syn match fortranFloatIll display "\<\d\+\.\([deq][-+]\=\d\+\)\=\(_\a\w*\)\=\>" |
7 | 166 " floating point number, D or Q exponents |
3281 | 167 syn match fortranFloatIll display "\<\d\+\.\d\+\([dq][-+]\=\d\+\)\=\(_\a\w*\)\=\>" |
7 | 168 " floating point number |
169 syn match fortranFloat display "\<\d\+\.\d\+\(e[-+]\=\d\+\)\=\(_\a\w*\)\=\>" | |
22565 | 170 " binary number |
171 syn match fortranBinary display "b["'][01]\+["']" | |
172 " octal number | |
173 syn match fortranOctal display "o["'][0-7]\+["']" | |
174 " hexadecimal number | |
175 syn match fortranHex display "z["'][0-9A-F]\+["']" | |
7 | 176 " Numbers in formats |
177 syn match fortranFormatSpec display "\d*f\d\+\.\d\+" | |
178 syn match fortranFormatSpec display "\d*e[sn]\=\d\+\.\d\+\(e\d+\>\)\=" | |
179 syn match fortranFormatSpec display "\d*\(d\|q\|g\)\d\+\.\d\+\(e\d+\)\=" | |
180 syn match fortranFormatSpec display "\d\+x\>" | |
181 " The next match cannot be used because it would pick up identifiers as well | |
182 " syn match fortranFormatSpec display "\<\(a\|i\)\d\+" | |
183 | |
184 " Numbers as labels | |
185 syn match fortranLabelNumber display "^\d\{1,5}\s"me=e-1 | |
186 syn match fortranLabelNumber display "^ \d\{1,4}\s"ms=s+1,me=e-1 | |
187 syn match fortranLabelNumber display "^ \d\{1,3}\s"ms=s+2,me=e-1 | |
188 syn match fortranLabelNumber display "^ \d\d\=\s"ms=s+3,me=e-1 | |
189 syn match fortranLabelNumber display "^ \d\s"ms=s+4,me=e-1 | |
190 | |
3281 | 191 if exists("fortran_more_precise") |
7 | 192 " Numbers as targets |
193 syn match fortranTarget display "\(\<if\s*(.\+)\s*\)\@<=\(\d\+\s*,\s*\)\{2}\d\+\>" | |
19303 | 194 syn match fortranTarget display "\(\<do\s\+\)\@11<=\d\+\>" |
195 syn match fortranTarget display "\(\<go\s*to\s*(\=\)\@11<=\(\d\+\s*,\s*\)*\d\+\>" | |
7 | 196 endif |
197 | |
3281 | 198 syn keyword fortranTypeR external |
199 syn keyword fortranIOR format | |
200 syn match fortranKeywordR "\<continue\>" | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
201 syn match fortranKeyword "^\s*\d\+\s\+continue\>" |
3256 | 202 syn match fortranKeyword "\<go\s*to\>" |
203 syn match fortranKeywordDel "\<go\s*to\ze\s\+.*,\s*(.*$" | |
204 syn match fortranKeywordOb "\<go\s*to\ze\s*(\d\+.*$" | |
3281 | 205 syn region fortranStringR start=+'+ end=+'+ contains=fortranContinueMark,fortranLeftMargin,fortranSerialNumber |
206 syn keyword fortranIntrinsicR dim lge lgt lle llt mod | |
3256 | 207 syn keyword fortranKeywordDel assign pause |
7 | 208 |
3281 | 209 syn match fortranType "\<type\>" |
210 syn keyword fortranType none | |
7 | 211 |
3281 | 212 syn keyword fortranStructure private public intent optional |
213 syn keyword fortranStructure pointer target allocatable | |
214 syn keyword fortranStorageClass in out | |
215 syn match fortranStorageClass "\<kind\s*="me=s+4 | |
216 syn match fortranStorageClass "\<len\s*="me=s+3 | |
7 | 217 |
3281 | 218 syn match fortranUnitHeader "\<module\>" |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
219 syn match fortranUnitHeader "\<submodule\>" |
3281 | 220 syn keyword fortranUnitHeader use only contains |
221 syn keyword fortranUnitHeader result operator assignment | |
222 syn match fortranUnitHeader "\<interface\>" | |
223 syn keyword fortranKeyword allocate deallocate nullify cycle exit | |
224 syn match fortranConditional "\<select\>" | |
225 syn keyword fortranConditional case default where elsewhere | |
7 | 226 |
3281 | 227 syn match fortranOperator "\(\(>\|<\)=\=\|==\|/=\|=\)" |
228 syn match fortranOperator "=>" | |
229 | |
230 syn region fortranString start=+"+ end=+"+ contains=fortranLeftMargin,fortranContinueMark,fortranSerialNumber | |
231 syn keyword fortranIO pad position action delim readwrite | |
232 syn keyword fortranIO eor advance nml | |
7 | 233 |
3281 | 234 syn keyword fortranIntrinsic adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack precision present product radix random_number random_seed range repeat reshape rrspacing |
235 syn keyword fortranIntrinsic scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify | |
236 syn match fortranIntrinsic "\<not\>\(\s*\.\)\@!"me=s+3 | |
237 syn match fortranIntrinsic "\<kind\>\s*[(,]"me=s+4 | |
7 | 238 |
3281 | 239 syn match fortranUnitHeader "\<end\s*function" |
240 syn match fortranUnitHeader "\<end\s*interface" | |
241 syn match fortranUnitHeader "\<end\s*module" | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
242 syn match fortranUnitHeader "\<end\s*submodule" |
3281 | 243 syn match fortranUnitHeader "\<end\s*program" |
244 syn match fortranUnitHeader "\<end\s*subroutine" | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
245 syn match fortranUnitHeader "\<end\s*block" |
3281 | 246 syn match fortranRepeat "\<end\s*do" |
247 syn match fortranConditional "\<end\s*where" | |
248 syn match fortranConditional "\<select\s*case" | |
249 syn match fortranConditional "\<end\s*select" | |
250 syn match fortranType "\<end\s*type" | |
251 syn match fortranType "\<in\s*out" | |
7 | 252 |
3682 | 253 syn keyword fortranType procedure |
254 syn match fortranType "\<module\ze\s\+procedure\>" | |
3281 | 255 syn keyword fortranIOR namelist |
256 syn keyword fortranConditionalR while | |
257 syn keyword fortranIntrinsicR achar iachar transfer | |
7 | 258 |
3281 | 259 syn keyword fortranInclude include |
260 syn keyword fortranStorageClassR sequence | |
7 | 261 |
262 syn match fortranConditional "\<end\s*if" | |
263 syn match fortranIO contains=fortranOperator "\<e\(nd\|rr\)\s*=\s*\d\+" | |
264 syn match fortranConditional "\<else\s*if" | |
265 | |
3256 | 266 syn keyword fortranUnitHeaderOb entry |
7 | 267 syn match fortranTypeR display "double\s\+precision" |
268 syn match fortranTypeR display "double\s\+complex" | |
269 syn match fortranUnitHeaderR display "block\s\+data" | |
270 syn keyword fortranStorageClassR common equivalence data | |
3281 | 271 syn keyword fortranIntrinsicR dble dprod |
272 syn match fortranOperatorR "\.\s*[gl][et]\s*\." | |
273 syn match fortranOperatorR "\.\s*\(eq\|ne\)\s*\." | |
7 | 274 |
3281 | 275 syn keyword fortranRepeat forall |
276 syn match fortranRepeat "\<end\s*forall" | |
277 syn keyword fortranIntrinsic null cpu_time | |
278 syn match fortranType "\<elemental\>" | |
279 syn match fortranType "\<pure\>" | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
280 syn match fortranType "\<impure\>" |
22565 | 281 syn match fortranType "\<recursive\>" |
3281 | 282 if exists("fortran_more_precise") |
19303 | 283 syn match fortranConstructName "\(\<end\s*forall\s\+\)\@15<=\a\w*\>" |
7 | 284 endif |
285 | |
3281 | 286 if b:fortran_dialect == "f08" |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
287 " F2003 |
3281 | 288 syn keyword fortranIntrinsic command_argument_count get_command get_command_argument get_environment_variable is_iostat_end is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_of |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
289 " ISO_C_binding |
3281 | 290 syn keyword fortranConstant c_null_char c_alert c_backspace c_form_feed c_new_line c_carriage_return c_horizontal_tab c_vertical_tab |
291 syn keyword fortranConstant c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr | |
292 syn keyword fortranIntrinsic iso_c_binding c_loc c_funloc c_associated c_f_pointer c_f_procpointer | |
293 syn keyword fortranType c_ptr c_funptr | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
294 " ISO_Fortran_env |
3281 | 295 syn keyword fortranConstant iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
296 " IEEE_arithmetic |
3281 | 297 syn keyword fortranIntrinsic ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
298 |
3281 | 299 syn keyword fortranReadWrite flush wait |
300 syn keyword fortranIO decimal round iomsg | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
301 syn keyword fortranType asynchronous nopass non_overridable pass protected volatile extends import |
3281 | 302 syn keyword fortranType non_intrinsic value bind deferred generic final enumerator |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
303 syn match fortranType "\<abstract\>" |
3281 | 304 syn match fortranType "\<class\>" |
305 syn match fortranType "\<associate\>" | |
306 syn match fortranType "\<end\s*associate" | |
307 syn match fortranType "\<enum\s*,\s*bind\s*(\s*c\s*)" | |
308 syn match fortranType "\<end\s*enum" | |
309 syn match fortranConditional "\<select\s*type" | |
310 syn match fortranConditional "\<type\s*is\>" | |
311 syn match fortranConditional "\<class\s*is\>" | |
312 syn match fortranUnitHeader "\<abstract\s*interface\>" | |
313 syn match fortranOperator "\([\|]\)" | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
314 |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
315 " F2008 |
3281 | 316 syn keyword fortranIntrinsic acosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 |
317 syn keyword fortranIntrinsic atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits | |
318 syn keyword fortranIntrinsic bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image | |
319 syn keyword fortranIO newunit | |
320 syn keyword fortranType contiguous | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
321 syn keyword fortranRepeat concurrent |
6530 | 322 |
323 " CUDA fortran | |
324 syn match fortranTypeCUDA "\<attributes\>" | |
325 syn keyword fortranTypeCUDA host global device value | |
326 syn keyword fortranTypeCUDA shared constant pinned texture | |
327 syn keyword fortranTypeCUDA dim1 dim2 dim3 dim4 | |
328 syn keyword fortranTypeCUDA cudadeviceprop cuda_count_kind cuda_stream_kind | |
329 syn keyword fortranTypeCUDA cudaEvent cudaFuncAttributes cudaArrayPtr | |
330 syn keyword fortranTypeCUDA cudaSymbol cudaChannelFormatDesc cudaPitchedPtr | |
331 syn keyword fortranTypeCUDA cudaExtent cudaMemcpy3DParms | |
332 syn keyword fortranTypeCUDA cudaFuncCachePreferNone cudaFuncCachePreferShared | |
333 syn keyword fortranTypeCUDA cudaFuncCachePreferL1 cudaLimitStackSize | |
334 syn keyword fortranTypeCUDA cudaLimitPrintfSize cudaLimitMallocHeapSize | |
335 syn keyword fortranTypeCUDA cudaSharedMemBankSizeDefault cudaSharedMemBankSizeFourByte cudaSharedMemBankSizeEightByte | |
336 syn keyword fortranTypeCUDA cudaEventDefault cudaEventBlockingSync cudaEventDisableTiming | |
337 syn keyword fortranTypeCUDA cudaMemcpyHostToDevice cudaMemcpyDeviceToHost | |
338 syn keyword fortranTypeCUDA cudaMemcpyDeviceToDevice | |
339 syn keyword fortranTypeCUDA cudaErrorNotReady cudaSuccess cudaErrorInvalidValue | |
340 syn keyword fortranTypeCUDA c_devptr | |
341 | |
342 syn match fortranStringCUDA "blockidx%[xyz]" | |
343 syn match fortranStringCUDA "blockdim%[xyz]" | |
344 syn match fortranStringCUDA "griddim%[xyz]" | |
345 syn match fortranStringCUDA "threadidx%[xyz]" | |
346 | |
347 syn keyword fortranIntrinsicCUDA warpsize syncthreads syncthreads_and syncthreads_count syncthreads_or threadfence threadfence_block threadfence_system gpu_time allthreads anythread ballot | |
348 syn keyword fortranIntrinsicCUDA atomicadd atomicsub atomicmax atomicmin atomicand atomicor atomicxor atomicexch atomicinc atomicdec atomiccas sizeof __shfl __shfl_up __shfl_down __shfl_xor | |
349 syn keyword fortranIntrinsicCUDA cudaChooseDevice cudaDeviceGetCacheConfig cudaDeviceGetLimit cudaDeviceGetSharedMemConfig cudaDeviceReset cudaDeviceSetCacheConfig cudaDeviceSetLimit cudaDeviceSetSharedMemConfig cudaDeviceSynchronize cudaGetDevice cudaGetDeviceCount cudaGetDeviceProperties cudaSetDevice cudaSetDeviceFlags cudaSetValidDevices | |
350 syn keyword fortranIntrinsicCUDA cudaThreadExit cudaThreadSynchronize cudaGetLastError cudaGetErrorString cudaPeekAtLastError cudaStreamCreate cudaStreamDestroy cudaStreamQuery cudaStreamSynchronize cudaStreamWaitEvent cudaEventCreate cudaEventCreateWithFlags cudaEventDestroy cudaEventElapsedTime cudaEventQuery cudaEventRecord cudaEventSynchronize | |
351 syn keyword fortranIntrinsicCUDA cudaFuncGetAttributes cudaFuncSetCacheConfig cudaFuncSetSharedMemConfig cudaSetDoubleForDevice cudaSetDoubleForHost cudaFree cudaFreeArray cudaFreeHost cudaGetSymbolAddress cudaGetSymbolSize | |
352 syn keyword fortranIntrinsicCUDA cudaHostAlloc cudaHostGetDevicePointer cudaHostGetFlags cudaHostRegister cudaHostUnregister cudaMalloc cudaMallocArray cudaMallocHost cudaMallocPitch cudaMalloc3D cudaMalloc3DArray | |
353 syn keyword fortranIntrinsicCUDA cudaMemcpy cudaMemcpyArraytoArray cudaMemcpyAsync cudaMemcpyFromArray cudaMemcpyFromSymbol cudaMemcpyFromSymbolAsync cudaMemcpyPeer cudaMemcpyPeerAsync cudaMemcpyToArray cudaMemcpyToSymbol cudaMemcpyToSymbolAsync cudaMemcpy2D cudaMemcpy2DArrayToArray cudaMemcpy2DAsync cudaMemcpy2DFromArray cudaMemcpy2DToArray cudaMemcpy3D cudaMemcpy3DAsync | |
354 syn keyword fortranIntrinsicCUDA cudaMemGetInfo cudaMemset cudaMemset2D cudaMemset3D cudaDeviceCanAccessPeer cudaDeviceDisablePeerAccess cudaDeviceEnablePeerAccess cudaPointerGetAttributes cudaDriverGetVersion cudaRuntimeGetVersion | |
355 | |
356 syn region none matchgroup=fortranType start="<<<" end=">>>" contains=ALLBUT,none | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
357 endif |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
358 |
7 | 359 syn cluster fortranCommentGroup contains=fortranTodo |
360 | |
361 if (b:fortran_fixed_source == 1) | |
362 if !exists("fortran_have_tabs") | |
24387 | 363 " Fixed format requires a textwidth of 72 for code, |
364 " but some vendor extensions allow longer lines | |
365 if exists("fortran_extended_line_length") | |
366 syn match fortranSerialNumber excludenl "^.\{133,}$"lc=132 | |
367 elseif exists("fortran_cardimage_line_length") | |
368 syn match fortranSerialNumber excludenl "^.\{81,}$"lc=80 | |
369 else | |
370 syn match fortranSerialNumber excludenl "^.\{73,}$"lc=72 | |
371 endif | |
7 | 372 "Flag left margin errors |
373 syn match fortranLabelError "^.\{-,4}[^0-9 ]" contains=fortranTab | |
374 syn match fortranLabelError "^.\{4}\d\S" | |
375 endif | |
2034 | 376 syn match fortranComment excludenl "^[!c*].*$" contains=@fortranCommentGroup,@spell |
7 | 377 syn match fortranLeftMargin transparent "^ \{5}" |
378 syn match fortranContinueMark display "^.\{5}\S"lc=5 | |
379 else | |
380 syn match fortranContinueMark display "&" | |
381 endif | |
382 | |
3281 | 383 syn match fortranComment excludenl "!.*$" contains=@fortranCommentGroup,@spell |
10228
8a1481e59d64
commit https://github.com/vim/vim/commit/3e496b0ea31996b665824f45664dee1fdd73c4d0
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
384 syn match fortranOpenMP excludenl "^\s*!\$\(OMP\)\=&\=\s.*$" |
7 | 385 |
386 "cpp is often used with Fortran | |
387 syn match cPreProc "^\s*#\s*\(define\|ifdef\)\>.*" | |
388 syn match cPreProc "^\s*#\s*\(elif\|if\)\>.*" | |
389 syn match cPreProc "^\s*#\s*\(ifndef\|undef\)\>.*" | |
390 syn match cPreCondit "^\s*#\s*\(else\|endif\)\>.*" | |
18719 | 391 syn region cIncluded contained start=+"[^("]+ skip=+\\\\\|\\"+ end=+"+ contains=fortranLeftMargin,fortranContinueMark,fortranSerialNumber |
392 "syn region cIncluded contained start=+"[^("]+ skip=+\\\\\|\\"+ end=+"+ | |
7 | 393 syn match cIncluded contained "<[^>]*>" |
394 syn match cInclude "^\s*#\s*include\>\s*["<]" contains=cIncluded | |
395 | |
396 "Synchronising limits assume that comment and continuation lines are not mixed | |
819 | 397 if exists("fortran_fold") || exists("fortran_more_precise") |
398 syn sync fromstart | |
399 elseif (b:fortran_fixed_source == 0) | |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
400 syn sync linecont "&" minlines=30 |
7 | 401 else |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
402 syn sync minlines=30 |
7 | 403 endif |
404 | |
3281 | 405 if exists("fortran_fold") |
7 | 406 |
407 if (b:fortran_fixed_source == 1) | |
408 syn region fortranProgram transparent fold keepend start="^\s*program\s\+\z(\a\w*\)" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*\(program\(\s\+\z1\>\)\=\|$\)" contains=ALLBUT,fortranModule | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
409 syn region fortranModule transparent fold keepend start="^\s*submodule\s\+(\a\w*\s*\(:\a\w*\s*\)*)\s*\z\(\a\w*\)" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*\(submodule\(\s\+\z1\>\)\=\|$\)" contains=ALLBUT,fortranProgram,fortranModule |
7 | 410 syn region fortranModule transparent fold keepend start="^\s*module\s\+\(procedure\)\@!\z(\a\w*\)" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*\(module\(\s\+\z1\>\)\=\|$\)" contains=ALLBUT,fortranProgram |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
411 syn region fortranFunction transparent fold keepend extend start="^\s*\(elemental \|pure \|impure \|module \|recursive \)\=\s*\(\(\(real \|integer \|logical \|complex \|double \s*precision \)\s*\((\(\s*kind\s*=\)\=\s*\w\+\s*)\)\=\)\|type\s\+(\s*\w\+\s*) \|character \((\(\s*len\s*=\)\=\s*\d\+\s*)\|(\(\s*kind\s*=\)\=\s*\w\+\s*)\)\=\)\=\s*function\s\+\z(\a\w*\)" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*\($\|function\(\s\+\z1\>\)\=\)" contains=ALLBUT,fortranProgram,fortranModule |
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
412 syn region fortranSubroutine transparent fold keepend extend start="^\s*\(elemental \|pure \|impure \|module \|recursive \)\=\s*subroutine\s\+\z(\a\w*\)" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*\($\|subroutine\(\s\+\z1\>\)\=\)" contains=ALLBUT,fortranProgram,fortranModule |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
413 syn region fortranBlockData transparent fold keepend start="\<block\s*data\(\s\+\z(\a\w*\)\)\=" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*\($\|block\s*data\(\s\+\z1\>\)\=\)" contains=ALLBUT,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortran77Loop,fortranCase,fortran90Loop,fortranIfBlock |
10385
368468ef35cf
commit https://github.com/vim/vim/commit/c0514bf4777a1d55f5785b3887c5686fd0bbe870
Christian Brabandt <cb@256bit.org>
parents:
10228
diff
changeset
|
414 syn region fortranAssociate transparent fold keepend start="^\s*\<associate\s\+" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*associate" contains=ALLBUT,fortranProgram,fortranModule,fortranSubroutine,fortranFunction |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
415 syn region fortranInterface transparent fold keepend extend start="^\s*\(abstract \)\=\s*interface\>" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*interface\>" contains=ALLBUT,fortranProgram,fortranModule,fortran77Loop,fortranCase,fortran90Loop,fortranIfBlock |
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
416 syn region fortranTypeDef transparent fold keepend extend start="^\s*type\s*\(,\s*\(public\|private\|abstract\)\)\=\s*::" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*type\>" contains=ALLBUT,fortranProgram,fortranModule,fortran77Loop,fortranCase,fortran90Loop,fortranIfBlock,fortranInterface |
7 | 417 else |
418 syn region fortranProgram transparent fold keepend start="^\s*program\s\+\z(\a\w*\)" skip="^\s*[!#].*$" excludenl end="\<end\s*\(program\(\s\+\z1\>\)\=\|$\)" contains=ALLBUT,fortranModule | |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
419 syn region fortranModule transparent fold keepend start="^\s*submodule\s\+(\a\w*\s*\(:\a\w*\s*\)*)\s*\z\(\a\w*\)" skip="^\s*[!#].*$" excludenl end="\<end\s*\(submodule\(\s\+\z1\>\)\=\|$\)" contains=ALLBUT,fortranProgram,fortranModule |
7 | 420 syn region fortranModule transparent fold keepend start="^\s*module\s\+\(procedure\)\@!\z(\a\w*\)" skip="^\s*[!#].*$" excludenl end="\<end\s*\(module\(\s\+\z1\>\)\=\|$\)" contains=ALLBUT,fortranProgram |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
421 syn region fortranFunction transparent fold keepend extend start="^\s*\(elemental \|pure \|impure \|module \|recursive \)\=\s*\(\(\(real \|integer \|logical \|complex \|double \s*precision \)\s*\((\(\s*kind\s*=\)\=\s*\w\+\s*)\)\=\)\|type\s\+(\s*\w\+\s*) \|character \((\(\s*len\s*=\)\=\s*\d\+\s*)\|(\(\s*kind\s*=\)\=\s*\w\+\s*)\)\=\)\=\s*function\s\+\z(\a\w*\)" skip="^\s*[!#].*$" excludenl end="\<end\s*\($\|function\(\s\+\z1\>\)\=\)" contains=ALLBUT,fortranProgram,fortranModule |
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
422 syn region fortranSubroutine transparent fold keepend extend start="^\s*\(elemental \|pure \|impure \|module \|recursive \)\=\s*subroutine\s\+\z(\a\w*\)" skip="^\s*[!#].*$" excludenl end="\<end\s*\($\|subroutine\(\s\+\z1\>\)\=\)" contains=ALLBUT,fortranProgram,fortranModule |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
423 syn region fortranBlockData transparent fold keepend start="\<block\s*data\(\s\+\z(\a\w*\)\)\=" skip="^\s*[!#].*$" excludenl end="\<end\s*\($\|block\s*data\(\s\+\z1\>\)\=\)" contains=ALLBUT,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortran77Loop,fortranCase,fortran90Loop,fortranIfBlock |
10385
368468ef35cf
commit https://github.com/vim/vim/commit/c0514bf4777a1d55f5785b3887c5686fd0bbe870
Christian Brabandt <cb@256bit.org>
parents:
10228
diff
changeset
|
424 syn region fortranAssociate transparent fold keepend start="^\s*\<associate\s\+" skip="^\s*[!#].*$" excludenl end="\<end\s*associate" contains=ALLBUT,fortranProgram,fortranModule,fortranSubroutine,fortranFunction |
9975
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
425 syn region fortranInterface transparent fold keepend extend start="^\s*\(abstract \)\=\s*interface\>" skip="^\s*[!#].*$" excludenl end="\<end\s*interface\>" contains=ALLBUT,fortranProgram,fortranModule,fortran77Loop,fortranCase,fortran90Loop,fortranIfBlock |
03fa8a51e9dc
commit https://github.com/vim/vim/commit/e4a3bcf28d92d0bde9ca227ccb40d401038185e5
Christian Brabandt <cb@256bit.org>
parents:
8303
diff
changeset
|
426 syn region fortranTypeDef transparent fold keepend extend start="^\s*type\s*\(,\s*\(public\|private\|abstract\)\)\=\s*::" skip="^\s*[!#].*$" excludenl end="\<end\s*type\>" contains=ALLBUT,fortranProgram,fortranModule,fortran77Loop,fortranCase,fortran90Loop,fortranIfBlock,fortranInterface |
7 | 427 endif |
428 | |
429 if exists("fortran_fold_conditionals") | |
430 if (b:fortran_fixed_source == 1) | |
431 syn region fortran77Loop transparent fold keepend start="\<do\s\+\z(\d\+\)" end="^\s*\z1\>" contains=ALLBUT,fortranUnitHeader,fortranStructure,fortranStorageClass,fortranType,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortranBlockData | |
432 syn region fortran90Loop transparent fold keepend extend start="\(\<end\s\+\)\@<!\<do\(\s\+\a\|\s*$\)" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*do\>" contains=ALLBUT,fortranUnitHeader,fortranStructure,fortranStorageClass,fortranType,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortranBlockData | |
433 syn region fortranIfBlock transparent fold keepend extend start="\(\<e\(nd\|lse\)\s\+\)\@<!\<if\s*(.\+)\s*then\>" skip="^\([!c*]\|\s*#\).*$" end="\<end\s*if\>" contains=ALLBUT,fortranUnitHeader,fortranStructure,fortranStorageClass,fortranType,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortranBlockData | |
10385
368468ef35cf
commit https://github.com/vim/vim/commit/c0514bf4777a1d55f5785b3887c5686fd0bbe870
Christian Brabandt <cb@256bit.org>
parents:
10228
diff
changeset
|
434 syn region fortranCase transparent fold keepend extend start="\<select\s*\(case\|type\)\>" skip="^\([!c*]\|\s*#\).*$" end="\<end\s*select\>" contains=ALLBUT,fortranUnitHeader,fortranStructure,fortranStorageClass,fortranType,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortranBlockData |
7 | 435 else |
436 syn region fortran77Loop transparent fold keepend start="\<do\s\+\z(\d\+\)" end="^\s*\z1\>" contains=ALLBUT,fortranUnitHeader,fortranStructure,fortranStorageClass,fortranType,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortranBlockData | |
437 syn region fortran90Loop transparent fold keepend extend start="\(\<end\s\+\)\@<!\<do\(\s\+\a\|\s*$\)" skip="^\s*[!#].*$" excludenl end="\<end\s*do\>" contains=ALLBUT,fortranUnitHeader,fortranStructure,fortranStorageClass,fortranType,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortranBlockData | |
8303
88207f4b861a
commit https://github.com/vim/vim/commit/dae8d21dd291df6a6679a00be64e18bca0156576
Christian Brabandt <cb@256bit.org>
parents:
7384
diff
changeset
|
438 syn region fortranIfBlock transparent fold keepend extend start="\(\<e\(nd\|lse\)\s\+\)\@<!\<if\s*(\(.\|&\s*\n\)\+)\(\s\|&\s*\n\)*then\>" skip="^\s*[!#].*$" end="\<end\s*if\>" contains=ALLBUT,fortranUnitHeader,fortranStructure,fortranStorageClass,fortranType,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortranBlockData |
10385
368468ef35cf
commit https://github.com/vim/vim/commit/c0514bf4777a1d55f5785b3887c5686fd0bbe870
Christian Brabandt <cb@256bit.org>
parents:
10228
diff
changeset
|
439 syn region fortranCase transparent fold keepend extend start="\<select\s*\(case\|type\)\>" skip="^\s*[!#].*$" end="\<end\s*select\>" contains=ALLBUT,fortranUnitHeader,fortranStructure,fortranStorageClass,fortranType,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortranBlockData |
7 | 440 endif |
441 endif | |
442 | |
443 if exists("fortran_fold_multilinecomments") | |
444 if (b:fortran_fixed_source == 1) | |
445 syn match fortranMultiLineComments transparent fold "\(^[!c*].*\(\n\|\%$\)\)\{4,}" contains=ALLBUT,fortranMultiCommentLines | |
446 else | |
447 syn match fortranMultiLineComments transparent fold "\(^\s*!.*\(\n\|\%$\)\)\{4,}" contains=ALLBUT,fortranMultiCommentLines | |
448 endif | |
449 endif | |
450 endif | |
451 | |
452 " Define the default highlighting. | |
3281 | 453 " The default highlighting differs for each dialect. |
454 " Transparent groups: | |
455 " fortranParen, fortranLeftMargin | |
456 " fortranProgram, fortranModule, fortranSubroutine, fortranFunction, | |
457 " fortranBlockData | |
458 " fortran77Loop, fortran90Loop, fortranIfBlock, fortranCase | |
459 " fortranMultiCommentLines | |
460 hi def link fortranKeyword Keyword | |
461 hi def link fortranConstructName Identifier | |
462 hi def link fortranConditional Conditional | |
463 hi def link fortranRepeat Repeat | |
464 hi def link fortranTodo Todo | |
465 hi def link fortranContinueMark Special | |
466 hi def link fortranString String | |
467 hi def link fortranNumber Number | |
22565 | 468 hi def link fortranBinary Number |
469 hi def link fortranOctal Number | |
470 hi def link fortranHex Number | |
3281 | 471 hi def link fortranOperator Operator |
472 hi def link fortranBoolean Boolean | |
473 hi def link fortranLabelError Error | |
474 hi def link fortranObsolete Todo | |
475 hi def link fortranType Type | |
476 hi def link fortranStructure Type | |
477 hi def link fortranStorageClass StorageClass | |
478 hi def link fortranCall Function | |
479 hi def link fortranUnitHeader fortranPreCondit | |
480 hi def link fortranReadWrite Keyword | |
481 hi def link fortranIO Keyword | |
482 hi def link fortranIntrinsic Function | |
483 hi def link fortranConstant Constant | |
7 | 484 |
3281 | 485 " To stop deleted & obsolescent features being highlighted as Todo items, |
486 " comment out the next 5 lines and uncomment the 5 lines after that | |
487 hi def link fortranUnitHeaderOb fortranObsolete | |
488 hi def link fortranKeywordOb fortranObsolete | |
489 hi def link fortranConditionalOb fortranObsolete | |
490 hi def link fortranTypeOb fortranObsolete | |
491 hi def link fortranKeywordDel fortranObsolete | |
492 "hi def link fortranUnitHeaderOb fortranUnitHeader | |
493 "hi def link fortranKeywordOb fortranKeyword | |
494 "hi def link fortranConditionalOb fortranConditional | |
495 "hi def link fortranTypeOb fortranType | |
496 "hi def link fortranKeywordDel fortranKeyword | |
3256 | 497 |
3281 | 498 if b:fortran_dialect == "F" |
499 hi! def link fortranIntrinsicR fortranObsolete | |
500 hi! def link fortranUnitHeaderR fortranObsolete | |
501 hi! def link fortranTypeR fortranObsolete | |
502 hi! def link fortranStorageClassR fortranObsolete | |
503 hi! def link fortranOperatorR fortranObsolete | |
504 hi! def link fortranInclude fortranObsolete | |
505 hi! def link fortranLabelNumber fortranObsolete | |
506 hi! def link fortranTarget fortranObsolete | |
507 hi! def link fortranFloatIll fortranObsolete | |
508 hi! def link fortranIOR fortranObsolete | |
509 hi! def link fortranKeywordR fortranObsolete | |
510 hi! def link fortranStringR fortranObsolete | |
511 hi! def link fortranConditionalR fortranObsolete | |
512 else | |
513 hi! def link fortranIntrinsicR fortranIntrinsic | |
514 hi! def link fortranUnitHeaderR fortranPreCondit | |
515 hi! def link fortranTypeR fortranType | |
516 hi! def link fortranStorageClassR fortranStorageClass | |
517 hi! def link fortranOperatorR fortranOperator | |
518 hi! def link fortranInclude Include | |
519 hi! def link fortranLabelNumber Special | |
520 hi! def link fortranTarget Special | |
521 hi! def link fortranFloatIll fortranFloat | |
522 hi! def link fortranIOR fortranIO | |
523 hi! def link fortranKeywordR fortranKeyword | |
524 hi! def link fortranStringR fortranString | |
525 hi! def link fortranConditionalR fortranConditional | |
526 endif | |
7 | 527 |
6530 | 528 " CUDA |
529 hi def link fortranIntrinsicCUDA fortranIntrinsic | |
530 hi def link fortranTypeCUDA fortranType | |
531 hi def link fortranStringCUDA fortranString | |
532 | |
3281 | 533 hi def link fortranFormatSpec Identifier |
534 hi def link fortranFloat Float | |
535 hi def link fortranPreCondit PreCondit | |
536 hi def link cIncluded fortranString | |
537 hi def link cInclude Include | |
538 hi def link cPreProc PreProc | |
539 hi def link cPreCondit PreCondit | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9975
diff
changeset
|
540 hi def link fortranOpenMP PreProc |
3281 | 541 hi def link fortranParenError Error |
542 hi def link fortranComment Comment | |
543 hi def link fortranSerialNumber Todo | |
544 hi def link fortranTab Error | |
7 | 545 |
3281 | 546 " Uncomment the next line if you use extra intrinsics provided by vendors |
547 "hi def link fortranExtraIntrinsic Function | |
7 | 548 |
549 let b:current_syntax = "fortran" | |
550 | |
3237 | 551 let &cpo = s:cpo_save |
552 unlet s:cpo_save | |
7 | 553 " vim: ts=8 tw=132 |