Mercurial > vim
annotate runtime/syntax/fortran.vim @ 7384:aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Dec 29 19:10:25 2015 +0100
Updated runtime files.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 29 Dec 2015 19:15:06 +0100 |
parents | 435956324539 |
children | 88207f4b861a |
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) |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
3 " Version: 0.96 |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
4 " Last Change: 2015 Nov. 30 |
6530 | 5 " 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
|
6 " Usage: For instructions, do :help fortran-syntax from Vim |
7 | 7 " Credits: |
8 " Version 0.1 was based on the fortran 77 syntax file by Mario Eusebio and | |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
9 " Preben Guldberg. Useful suggestions and contributions were made by: Andrej Panjkov, |
7 | 10 " Bram Moolenaar, Thomas Olsen, Michael Sternberg, Christian Reile, |
11 " Walter Dieudonné, Alexander Wagner, Roman Bertle, Charles Rendleman, | |
6530 | 12 " Andrew Griffiths, Joe Krahn, Hendrik Merx, and Matt Thompson. |
7 | 13 |
3281 | 14 if exists("b:current_syntax") |
7 | 15 finish |
16 endif | |
17 | |
3237 | 18 let s:cpo_save = &cpo |
19 set cpo&vim | |
20 | |
3281 | 21 " 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
|
22 " 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
|
23 " first try using directive in first three lines of file |
3281 | 24 let b:fortran_retype = getline(1)." ".getline(2)." ".getline(3) |
25 if b:fortran_retype =~? '\<fortran_dialect\s*=\s*F\>' | |
26 let b:fortran_dialect = "F" | |
27 elseif b:fortran_retype =~? '\<fortran_dialect\s*=\s*f08\>' | |
28 let b:fortran_dialect = "f08" | |
29 elseif !exists("b:fortran_dialect") | |
30 if exists("g:fortran_dialect") && g:fortran_dialect =~# '\<F\|f08\>' | |
31 " try global variable | |
32 let b:fortran_dialect = g:fortran_dialect | |
33 else " nothing found, so use default | |
34 let b:fortran_dialect = "f08" | |
7 | 35 endif |
36 endif | |
3281 | 37 unlet! b:fortran_retype |
38 " make sure buffer-local value is not invalid | |
39 if b:fortran_dialect !~# '\<F\|f08\>' | |
40 let b:fortran_dialect = "f08" | |
7 | 41 endif |
42 | |
43 " Choose between fixed and free source form if this hasn't been done yet | |
44 if !exists("b:fortran_fixed_source") | |
3281 | 45 if b:fortran_dialect == "F" |
46 " F requires free source form | |
7 | 47 let b:fortran_fixed_source = 0 |
48 elseif exists("fortran_free_source") | |
3281 | 49 " User guarantees free source form for all fortran files |
7 | 50 let b:fortran_fixed_source = 0 |
51 elseif exists("fortran_fixed_source") | |
3281 | 52 " User guarantees fixed source form for all fortran files |
7 | 53 let b:fortran_fixed_source = 1 |
7384
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
54 elseif expand("%:e") ==? "f\<90\|95\|03\|08\>" |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
55 " 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
|
56 let b:fortran_fixed_source = 0 |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
57 elseif expand("%:e") ==? "f\|f77\|for" |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
58 " Fixed-form file extension defaults |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
59 let b:fortran_fixed_source = 1 |
7 | 60 else |
3281 | 61 " Modern fortran still allows both free and fixed source form. |
7 | 62 " 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
|
63 " are detected in the first five columns of the first s:lmax lines. |
7 | 64 " Detection becomes more accurate and time-consuming if more lines |
65 " are checked. Increase the limit below if you keep lots of comments at | |
66 " 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
|
67 let s:lmax = 500 |
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
68 if ( s:lmax > line("$") ) |
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
69 let s:lmax = line("$") |
7 | 70 endif |
71 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
|
72 let s:ln=1 |
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
73 while s:ln <= s:lmax |
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
74 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
|
75 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
|
76 let b:fortran_fixed_source = 0 |
aea5ebf352c4
commit https://github.com/vim/vim/commit/256972a9849b5d575b62a6a71be5b6934b5b0e8b
Christian Brabandt <cb@256bit.org>
parents:
6530
diff
changeset
|
77 break |
7 | 78 endif |
2377
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
79 let s:ln = s:ln + 1 |
7 | 80 endwhile |
2377
878562053ba3
Update Fortran indent and syntax file. (Ajit Thakkar)
Bram Moolenaar <bram@vim.org>
parents:
2370
diff
changeset
|
81 unlet! s:lmax s:ln s:test |
7 | 82 endif |
83 endif | |
84 | |
85 syn case ignore | |
86 | |
3281 | 87 if b:fortran_fixed_source == 1 |
88 syn match fortranConstructName "^\s\{6,}\zs\a\w*\ze\s*:" | |
89 else | |
90 syn match fortranConstructName "^\s*\zs\a\w*\ze\s*:" | |
91 endif | |
92 if exists("fortran_more_precise") | |
93 syn match fortranConstructName "\(\<end\s*do\s\+\)\@<=\a\w*" | |
94 syn match fortranConstructName "\(\<end\s*if\s\+\)\@<=\a\w*" | |
95 syn match fortranConstructName "\(\<end\s*select\s\+\)\@<=\a\w*" | |
7 | 96 endif |
97 | |
3281 | 98 syn match fortranUnitHeader "\<end\>" |
819 | 99 syn match fortranType "\<character\>" |
100 syn match fortranType "\<complex\>" | |
101 syn match fortranType "\<integer\>" | |
7 | 102 syn keyword fortranType intrinsic |
103 syn match fortranType "\<implicit\>" | |
104 syn keyword fortranStructure dimension | |
105 syn keyword fortranStorageClass parameter save | |
106 syn match fortranUnitHeader "\<subroutine\>" | |
107 syn keyword fortranCall call | |
108 syn match fortranUnitHeader "\<function\>" | |
109 syn match fortranUnitHeader "\<program\>" | |
819 | 110 syn keyword fortranKeyword return stop |
7 | 111 syn keyword fortranConditional else then |
112 syn match fortranConditional "\<if\>" | |
3256 | 113 syn match fortranConditionalOb "\<if\s*(.*)\s*\d\+\s*,\s*\d\+\s*,\s*\d\+\s*$" |
7 | 114 syn match fortranRepeat "\<do\>" |
115 | |
116 syn keyword fortranTodo contained todo fixme | |
117 | |
118 "Catch errors caused by too many right parentheses | |
819 | 119 syn region fortranParen transparent start="(" end=")" contains=ALLBUT,fortranParenError,@fortranCommentGroup,cIncluded,@spell |
7 | 120 syn match fortranParenError ")" |
121 | |
122 syn match fortranOperator "\.\s*n\=eqv\s*\." | |
123 syn match fortranOperator "\.\s*\(and\|or\|not\)\s*\." | |
124 syn match fortranOperator "\(+\|-\|/\|\*\)" | |
3281 | 125 syn match fortranTypeOb "\<character\s*\*" |
7 | 126 |
127 syn match fortranBoolean "\.\s*\(true\|false\)\s*\." | |
128 | |
819 | 129 syn keyword fortranReadWrite backspace close endfile inquire open print read rewind write |
7 | 130 |
131 "If tabs are allowed then the left margin checks do not work | |
132 if exists("fortran_have_tabs") | |
133 syn match fortranTab "\t" transparent | |
134 else | |
135 syn match fortranTab "\t" | |
136 endif | |
137 | |
819 | 138 syn keyword fortranIO access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit |
7 | 139 |
3281 | 140 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 | 141 |
142 " Intrinsics provided by some vendors | |
3256 | 143 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 | 144 |
3281 | 145 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 |
146 syn match fortranIntrinsic "\<len\s*[(,]"me=s+3 | |
147 syn match fortranIntrinsic "\<real\s*("me=s+4 | |
7 | 148 syn match fortranType "\<implicit\s\+real" |
149 syn match fortranType "^\s*real\>" | |
3281 | 150 syn match fortranIntrinsic "\<logical\s*("me=s+7 |
7 | 151 syn match fortranType "\<implicit\s\+logical" |
152 syn match fortranType "^\s*logical\>" | |
153 | |
154 "Numbers of various sorts | |
155 " Integers | |
156 syn match fortranNumber display "\<\d\+\(_\a\w*\)\=\>" | |
157 " floating point number, without a decimal point | |
3281 | 158 syn match fortranFloatIll display "\<\d\+[deq][-+]\=\d\+\(_\a\w*\)\=\>" |
7 | 159 " floating point number, starting with a decimal point |
3281 | 160 syn match fortranFloatIll display "\.\d\+\([deq][-+]\=\d\+\)\=\(_\a\w*\)\=\>" |
7 | 161 " floating point number, no digits after decimal |
3281 | 162 syn match fortranFloatIll display "\<\d\+\.\([deq][-+]\=\d\+\)\=\(_\a\w*\)\=\>" |
7 | 163 " floating point number, D or Q exponents |
3281 | 164 syn match fortranFloatIll display "\<\d\+\.\d\+\([dq][-+]\=\d\+\)\=\(_\a\w*\)\=\>" |
7 | 165 " floating point number |
166 syn match fortranFloat display "\<\d\+\.\d\+\(e[-+]\=\d\+\)\=\(_\a\w*\)\=\>" | |
167 " Numbers in formats | |
168 syn match fortranFormatSpec display "\d*f\d\+\.\d\+" | |
169 syn match fortranFormatSpec display "\d*e[sn]\=\d\+\.\d\+\(e\d+\>\)\=" | |
170 syn match fortranFormatSpec display "\d*\(d\|q\|g\)\d\+\.\d\+\(e\d+\)\=" | |
171 syn match fortranFormatSpec display "\d\+x\>" | |
172 " The next match cannot be used because it would pick up identifiers as well | |
173 " syn match fortranFormatSpec display "\<\(a\|i\)\d\+" | |
174 | |
175 " Numbers as labels | |
176 syn match fortranLabelNumber display "^\d\{1,5}\s"me=e-1 | |
177 syn match fortranLabelNumber display "^ \d\{1,4}\s"ms=s+1,me=e-1 | |
178 syn match fortranLabelNumber display "^ \d\{1,3}\s"ms=s+2,me=e-1 | |
179 syn match fortranLabelNumber display "^ \d\d\=\s"ms=s+3,me=e-1 | |
180 syn match fortranLabelNumber display "^ \d\s"ms=s+4,me=e-1 | |
181 | |
3281 | 182 if exists("fortran_more_precise") |
7 | 183 " Numbers as targets |
184 syn match fortranTarget display "\(\<if\s*(.\+)\s*\)\@<=\(\d\+\s*,\s*\)\{2}\d\+\>" | |
185 syn match fortranTarget display "\(\<do\s\+\)\@<=\d\+\>" | |
186 syn match fortranTarget display "\(\<go\s*to\s*(\=\)\@<=\(\d\+\s*,\s*\)*\d\+\>" | |
187 endif | |
188 | |
3281 | 189 syn keyword fortranTypeR external |
190 syn keyword fortranIOR format | |
191 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
|
192 syn match fortranKeyword "^\s*\d\+\s\+continue\>" |
3256 | 193 syn match fortranKeyword "\<go\s*to\>" |
194 syn match fortranKeywordDel "\<go\s*to\ze\s\+.*,\s*(.*$" | |
195 syn match fortranKeywordOb "\<go\s*to\ze\s*(\d\+.*$" | |
3281 | 196 syn region fortranStringR start=+'+ end=+'+ contains=fortranContinueMark,fortranLeftMargin,fortranSerialNumber |
197 syn keyword fortranIntrinsicR dim lge lgt lle llt mod | |
3256 | 198 syn keyword fortranKeywordDel assign pause |
7 | 199 |
3281 | 200 syn match fortranType "\<type\>" |
201 syn keyword fortranType none | |
7 | 202 |
3281 | 203 syn keyword fortranStructure private public intent optional |
204 syn keyword fortranStructure pointer target allocatable | |
205 syn keyword fortranStorageClass in out | |
206 syn match fortranStorageClass "\<kind\s*="me=s+4 | |
207 syn match fortranStorageClass "\<len\s*="me=s+3 | |
7 | 208 |
3281 | 209 syn match fortranUnitHeader "\<module\>" |
210 syn keyword fortranUnitHeader use only contains | |
211 syn keyword fortranUnitHeader result operator assignment | |
212 syn match fortranUnitHeader "\<interface\>" | |
213 syn match fortranUnitHeader "\<recursive\>" | |
214 syn keyword fortranKeyword allocate deallocate nullify cycle exit | |
215 syn match fortranConditional "\<select\>" | |
216 syn keyword fortranConditional case default where elsewhere | |
7 | 217 |
3281 | 218 syn match fortranOperator "\(\(>\|<\)=\=\|==\|/=\|=\)" |
219 syn match fortranOperator "=>" | |
220 | |
221 syn region fortranString start=+"+ end=+"+ contains=fortranLeftMargin,fortranContinueMark,fortranSerialNumber | |
222 syn keyword fortranIO pad position action delim readwrite | |
223 syn keyword fortranIO eor advance nml | |
7 | 224 |
3281 | 225 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 |
226 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 | |
227 syn match fortranIntrinsic "\<not\>\(\s*\.\)\@!"me=s+3 | |
228 syn match fortranIntrinsic "\<kind\>\s*[(,]"me=s+4 | |
7 | 229 |
3281 | 230 syn match fortranUnitHeader "\<end\s*function" |
231 syn match fortranUnitHeader "\<end\s*interface" | |
232 syn match fortranUnitHeader "\<end\s*module" | |
233 syn match fortranUnitHeader "\<end\s*program" | |
234 syn match fortranUnitHeader "\<end\s*subroutine" | |
235 syn match fortranRepeat "\<end\s*do" | |
236 syn match fortranConditional "\<end\s*where" | |
237 syn match fortranConditional "\<select\s*case" | |
238 syn match fortranConditional "\<end\s*select" | |
239 syn match fortranType "\<end\s*type" | |
240 syn match fortranType "\<in\s*out" | |
7 | 241 |
3682 | 242 syn keyword fortranType procedure |
243 syn match fortranType "\<module\ze\s\+procedure\>" | |
3281 | 244 syn keyword fortranIOR namelist |
245 syn keyword fortranConditionalR while | |
246 syn keyword fortranIntrinsicR achar iachar transfer | |
7 | 247 |
3281 | 248 syn keyword fortranInclude include |
249 syn keyword fortranStorageClassR sequence | |
7 | 250 |
251 syn match fortranConditional "\<end\s*if" | |
252 syn match fortranIO contains=fortranOperator "\<e\(nd\|rr\)\s*=\s*\d\+" | |
253 syn match fortranConditional "\<else\s*if" | |
254 | |
3256 | 255 syn keyword fortranUnitHeaderOb entry |
7 | 256 syn match fortranTypeR display "double\s\+precision" |
257 syn match fortranTypeR display "double\s\+complex" | |
258 syn match fortranUnitHeaderR display "block\s\+data" | |
259 syn keyword fortranStorageClassR common equivalence data | |
3281 | 260 syn keyword fortranIntrinsicR dble dprod |
261 syn match fortranOperatorR "\.\s*[gl][et]\s*\." | |
262 syn match fortranOperatorR "\.\s*\(eq\|ne\)\s*\." | |
7 | 263 |
3281 | 264 syn keyword fortranRepeat forall |
265 syn match fortranRepeat "\<end\s*forall" | |
266 syn keyword fortranIntrinsic null cpu_time | |
267 syn match fortranType "\<elemental\>" | |
268 syn match fortranType "\<pure\>" | |
269 if exists("fortran_more_precise") | |
270 syn match fortranConstructName "\(\<end\s*forall\s\+\)\@<=\a\w*\>" | |
7 | 271 endif |
272 | |
3281 | 273 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
|
274 " F2003 |
3281 | 275 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
|
276 " ISO_C_binding |
3281 | 277 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 |
278 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 | |
279 syn keyword fortranIntrinsic iso_c_binding c_loc c_funloc c_associated c_f_pointer c_f_procpointer | |
280 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
|
281 " ISO_Fortran_env |
3281 | 282 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
|
283 " IEEE_arithmetic |
3281 | 284 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
|
285 |
3281 | 286 syn keyword fortranReadWrite flush wait |
287 syn keyword fortranIO decimal round iomsg | |
288 syn keyword fortranType asynchronous nopass non_overridable pass protected volatile abstract extends import | |
289 syn keyword fortranType non_intrinsic value bind deferred generic final enumerator | |
290 syn match fortranType "\<class\>" | |
291 syn match fortranType "\<associate\>" | |
292 syn match fortranType "\<end\s*associate" | |
293 syn match fortranType "\<enum\s*,\s*bind\s*(\s*c\s*)" | |
294 syn match fortranType "\<end\s*enum" | |
295 syn match fortranConditional "\<select\s*type" | |
296 syn match fortranConditional "\<type\s*is\>" | |
297 syn match fortranConditional "\<class\s*is\>" | |
298 syn match fortranUnitHeader "\<abstract\s*interface\>" | |
299 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
|
300 |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
301 " F2008 |
3281 | 302 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 |
303 syn keyword fortranIntrinsic atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits | |
304 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 | |
305 syn keyword fortranIO newunit | |
306 syn keyword fortranType contiguous | |
6530 | 307 |
308 " CUDA fortran | |
309 syn match fortranTypeCUDA "\<attributes\>" | |
310 syn keyword fortranTypeCUDA host global device value | |
311 syn keyword fortranTypeCUDA shared constant pinned texture | |
312 syn keyword fortranTypeCUDA dim1 dim2 dim3 dim4 | |
313 syn keyword fortranTypeCUDA cudadeviceprop cuda_count_kind cuda_stream_kind | |
314 syn keyword fortranTypeCUDA cudaEvent cudaFuncAttributes cudaArrayPtr | |
315 syn keyword fortranTypeCUDA cudaSymbol cudaChannelFormatDesc cudaPitchedPtr | |
316 syn keyword fortranTypeCUDA cudaExtent cudaMemcpy3DParms | |
317 syn keyword fortranTypeCUDA cudaFuncCachePreferNone cudaFuncCachePreferShared | |
318 syn keyword fortranTypeCUDA cudaFuncCachePreferL1 cudaLimitStackSize | |
319 syn keyword fortranTypeCUDA cudaLimitPrintfSize cudaLimitMallocHeapSize | |
320 syn keyword fortranTypeCUDA cudaSharedMemBankSizeDefault cudaSharedMemBankSizeFourByte cudaSharedMemBankSizeEightByte | |
321 syn keyword fortranTypeCUDA cudaEventDefault cudaEventBlockingSync cudaEventDisableTiming | |
322 syn keyword fortranTypeCUDA cudaMemcpyHostToDevice cudaMemcpyDeviceToHost | |
323 syn keyword fortranTypeCUDA cudaMemcpyDeviceToDevice | |
324 syn keyword fortranTypeCUDA cudaErrorNotReady cudaSuccess cudaErrorInvalidValue | |
325 syn keyword fortranTypeCUDA c_devptr | |
326 | |
327 syn match fortranStringCUDA "blockidx%[xyz]" | |
328 syn match fortranStringCUDA "blockdim%[xyz]" | |
329 syn match fortranStringCUDA "griddim%[xyz]" | |
330 syn match fortranStringCUDA "threadidx%[xyz]" | |
331 | |
332 syn keyword fortranIntrinsicCUDA warpsize syncthreads syncthreads_and syncthreads_count syncthreads_or threadfence threadfence_block threadfence_system gpu_time allthreads anythread ballot | |
333 syn keyword fortranIntrinsicCUDA atomicadd atomicsub atomicmax atomicmin atomicand atomicor atomicxor atomicexch atomicinc atomicdec atomiccas sizeof __shfl __shfl_up __shfl_down __shfl_xor | |
334 syn keyword fortranIntrinsicCUDA cudaChooseDevice cudaDeviceGetCacheConfig cudaDeviceGetLimit cudaDeviceGetSharedMemConfig cudaDeviceReset cudaDeviceSetCacheConfig cudaDeviceSetLimit cudaDeviceSetSharedMemConfig cudaDeviceSynchronize cudaGetDevice cudaGetDeviceCount cudaGetDeviceProperties cudaSetDevice cudaSetDeviceFlags cudaSetValidDevices | |
335 syn keyword fortranIntrinsicCUDA cudaThreadExit cudaThreadSynchronize cudaGetLastError cudaGetErrorString cudaPeekAtLastError cudaStreamCreate cudaStreamDestroy cudaStreamQuery cudaStreamSynchronize cudaStreamWaitEvent cudaEventCreate cudaEventCreateWithFlags cudaEventDestroy cudaEventElapsedTime cudaEventQuery cudaEventRecord cudaEventSynchronize | |
336 syn keyword fortranIntrinsicCUDA cudaFuncGetAttributes cudaFuncSetCacheConfig cudaFuncSetSharedMemConfig cudaSetDoubleForDevice cudaSetDoubleForHost cudaFree cudaFreeArray cudaFreeHost cudaGetSymbolAddress cudaGetSymbolSize | |
337 syn keyword fortranIntrinsicCUDA cudaHostAlloc cudaHostGetDevicePointer cudaHostGetFlags cudaHostRegister cudaHostUnregister cudaMalloc cudaMallocArray cudaMallocHost cudaMallocPitch cudaMalloc3D cudaMalloc3DArray | |
338 syn keyword fortranIntrinsicCUDA cudaMemcpy cudaMemcpyArraytoArray cudaMemcpyAsync cudaMemcpyFromArray cudaMemcpyFromSymbol cudaMemcpyFromSymbolAsync cudaMemcpyPeer cudaMemcpyPeerAsync cudaMemcpyToArray cudaMemcpyToSymbol cudaMemcpyToSymbolAsync cudaMemcpy2D cudaMemcpy2DArrayToArray cudaMemcpy2DAsync cudaMemcpy2DFromArray cudaMemcpy2DToArray cudaMemcpy3D cudaMemcpy3DAsync | |
339 syn keyword fortranIntrinsicCUDA cudaMemGetInfo cudaMemset cudaMemset2D cudaMemset3D cudaDeviceCanAccessPeer cudaDeviceDisablePeerAccess cudaDeviceEnablePeerAccess cudaPointerGetAttributes cudaDriverGetVersion cudaRuntimeGetVersion | |
340 | |
341 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
|
342 endif |
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
343 |
7 | 344 syn cluster fortranCommentGroup contains=fortranTodo |
345 | |
346 if (b:fortran_fixed_source == 1) | |
347 if !exists("fortran_have_tabs") | |
348 "Flag items beyond column 72 | |
349 syn match fortranSerialNumber excludenl "^.\{73,}$"lc=72 | |
350 "Flag left margin errors | |
351 syn match fortranLabelError "^.\{-,4}[^0-9 ]" contains=fortranTab | |
352 syn match fortranLabelError "^.\{4}\d\S" | |
353 endif | |
2034 | 354 syn match fortranComment excludenl "^[!c*].*$" contains=@fortranCommentGroup,@spell |
7 | 355 syn match fortranLeftMargin transparent "^ \{5}" |
356 syn match fortranContinueMark display "^.\{5}\S"lc=5 | |
357 else | |
358 syn match fortranContinueMark display "&" | |
359 endif | |
360 | |
3281 | 361 syn match fortranComment excludenl "!.*$" contains=@fortranCommentGroup,@spell |
7 | 362 |
363 "cpp is often used with Fortran | |
364 syn match cPreProc "^\s*#\s*\(define\|ifdef\)\>.*" | |
365 syn match cPreProc "^\s*#\s*\(elif\|if\)\>.*" | |
366 syn match cPreProc "^\s*#\s*\(ifndef\|undef\)\>.*" | |
367 syn match cPreCondit "^\s*#\s*\(else\|endif\)\>.*" | |
368 syn region cIncluded contained start=+"[^(]+ skip=+\\\\\|\\"+ end=+"+ contains=fortranLeftMargin,fortranContinueMark,fortranSerialNumber | |
369 syn match cIncluded contained "<[^>]*>" | |
370 syn match cInclude "^\s*#\s*include\>\s*["<]" contains=cIncluded | |
371 | |
372 "Synchronising limits assume that comment and continuation lines are not mixed | |
819 | 373 if exists("fortran_fold") || exists("fortran_more_precise") |
374 syn sync fromstart | |
375 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
|
376 syn sync linecont "&" minlines=30 |
7 | 377 else |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
378 syn sync minlines=30 |
7 | 379 endif |
380 | |
3281 | 381 if exists("fortran_fold") |
7 | 382 |
383 if (b:fortran_fixed_source == 1) | |
384 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 | |
385 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 | |
819 | 386 syn region fortranFunction transparent fold keepend extend start="^\s*\(elemental \|pure \|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 |
7 | 387 syn region fortranSubroutine transparent fold keepend extend start="^\s*\(elemental \|pure \|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
|
388 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 |
7 | 389 syn region fortranInterface transparent fold keepend extend start="^\s*interface\>" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*interface\>" contains=ALLBUT,fortranProgram,fortranModule,fortran77Loop,fortranCase,fortran90Loop,fortranIfBlock |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
390 syn region fortranTypeDef transparent fold keepend extend start="^\s*type\s*\(,\s*\(public\|private\)\)\=\s*::" skip="^\([!c*]\|\s*#\).*$" excludenl end="\<end\s*type\>" contains=ALLBUT,fortranProgram,fortranModule,fortran77Loop,fortranCase,fortran90Loop,fortranIfBlock |
7 | 391 else |
392 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 | |
393 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 | |
819 | 394 syn region fortranFunction transparent fold keepend extend start="^\s*\(elemental \|pure \|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 |
7 | 395 syn region fortranSubroutine transparent fold keepend extend start="^\s*\(elemental \|pure \|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
|
396 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 |
7 | 397 syn region fortranInterface transparent fold keepend extend start="^\s*interface\>" skip="^\s*[!#].*$" excludenl end="\<end\s*interface\>" contains=ALLBUT,fortranProgram,fortranModule,fortran77Loop,fortranCase,fortran90Loop,fortranIfBlock |
2370
454f314d0e61
Make it possible to load Perl dynamically on Unix. (James Vega)
Bram Moolenaar <bram@vim.org>
parents:
2034
diff
changeset
|
398 syn region fortranTypeDef transparent fold keepend extend start="^\s*type\s*\(,\s*\(public\|private\)\)\=\s*::" skip="^\s*[!#].*$" excludenl end="\<end\s*type\>" contains=ALLBUT,fortranProgram,fortranModule,fortran77Loop,fortranCase,fortran90Loop,fortranIfBlock |
7 | 399 endif |
400 | |
401 if exists("fortran_fold_conditionals") | |
402 if (b:fortran_fixed_source == 1) | |
403 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 | |
404 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 | |
405 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 | |
406 syn region fortranCase transparent fold keepend extend start="\<select\s*case\>" skip="^\([!c*]\|\s*#\).*$" end="\<end\s*select\>" contains=ALLBUT,fortranUnitHeader,fortranStructure,fortranStorageClass,fortranType,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortranBlockData | |
407 else | |
408 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 | |
409 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 | |
410 syn region fortranIfBlock transparent fold keepend extend start="\(\<e\(nd\|lse\)\s\+\)\@<!\<if\s*(.\+)\s*then\>" skip="^\s*[!#].*$" end="\<end\s*if\>" contains=ALLBUT,fortranUnitHeader,fortranStructure,fortranStorageClass,fortranType,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortranBlockData | |
411 syn region fortranCase transparent fold keepend extend start="\<select\s*case\>" skip="^\s*[!#].*$" end="\<end\s*select\>" contains=ALLBUT,fortranUnitHeader,fortranStructure,fortranStorageClass,fortranType,fortranProgram,fortranModule,fortranSubroutine,fortranFunction,fortranBlockData | |
412 endif | |
413 endif | |
414 | |
415 if exists("fortran_fold_multilinecomments") | |
416 if (b:fortran_fixed_source == 1) | |
417 syn match fortranMultiLineComments transparent fold "\(^[!c*].*\(\n\|\%$\)\)\{4,}" contains=ALLBUT,fortranMultiCommentLines | |
418 else | |
419 syn match fortranMultiLineComments transparent fold "\(^\s*!.*\(\n\|\%$\)\)\{4,}" contains=ALLBUT,fortranMultiCommentLines | |
420 endif | |
421 endif | |
422 endif | |
423 | |
424 " Define the default highlighting. | |
3281 | 425 " The default highlighting differs for each dialect. |
426 " Transparent groups: | |
427 " fortranParen, fortranLeftMargin | |
428 " fortranProgram, fortranModule, fortranSubroutine, fortranFunction, | |
429 " fortranBlockData | |
430 " fortran77Loop, fortran90Loop, fortranIfBlock, fortranCase | |
431 " fortranMultiCommentLines | |
432 hi def link fortranKeyword Keyword | |
433 hi def link fortranConstructName Identifier | |
434 hi def link fortranConditional Conditional | |
435 hi def link fortranRepeat Repeat | |
436 hi def link fortranTodo Todo | |
437 hi def link fortranContinueMark Special | |
438 hi def link fortranString String | |
439 hi def link fortranNumber Number | |
440 hi def link fortranOperator Operator | |
441 hi def link fortranBoolean Boolean | |
442 hi def link fortranLabelError Error | |
443 hi def link fortranObsolete Todo | |
444 hi def link fortranType Type | |
445 hi def link fortranStructure Type | |
446 hi def link fortranStorageClass StorageClass | |
447 hi def link fortranCall Function | |
448 hi def link fortranUnitHeader fortranPreCondit | |
449 hi def link fortranReadWrite Keyword | |
450 hi def link fortranIO Keyword | |
451 hi def link fortranIntrinsic Function | |
452 hi def link fortranConstant Constant | |
7 | 453 |
3281 | 454 " To stop deleted & obsolescent features being highlighted as Todo items, |
455 " comment out the next 5 lines and uncomment the 5 lines after that | |
456 hi def link fortranUnitHeaderOb fortranObsolete | |
457 hi def link fortranKeywordOb fortranObsolete | |
458 hi def link fortranConditionalOb fortranObsolete | |
459 hi def link fortranTypeOb fortranObsolete | |
460 hi def link fortranKeywordDel fortranObsolete | |
461 "hi def link fortranUnitHeaderOb fortranUnitHeader | |
462 "hi def link fortranKeywordOb fortranKeyword | |
463 "hi def link fortranConditionalOb fortranConditional | |
464 "hi def link fortranTypeOb fortranType | |
465 "hi def link fortranKeywordDel fortranKeyword | |
3256 | 466 |
3281 | 467 if b:fortran_dialect == "F" |
468 hi! def link fortranIntrinsicR fortranObsolete | |
469 hi! def link fortranUnitHeaderR fortranObsolete | |
470 hi! def link fortranTypeR fortranObsolete | |
471 hi! def link fortranStorageClassR fortranObsolete | |
472 hi! def link fortranOperatorR fortranObsolete | |
473 hi! def link fortranInclude fortranObsolete | |
474 hi! def link fortranLabelNumber fortranObsolete | |
475 hi! def link fortranTarget fortranObsolete | |
476 hi! def link fortranFloatIll fortranObsolete | |
477 hi! def link fortranIOR fortranObsolete | |
478 hi! def link fortranKeywordR fortranObsolete | |
479 hi! def link fortranStringR fortranObsolete | |
480 hi! def link fortranConditionalR fortranObsolete | |
481 else | |
482 hi! def link fortranIntrinsicR fortranIntrinsic | |
483 hi! def link fortranUnitHeaderR fortranPreCondit | |
484 hi! def link fortranTypeR fortranType | |
485 hi! def link fortranStorageClassR fortranStorageClass | |
486 hi! def link fortranOperatorR fortranOperator | |
487 hi! def link fortranInclude Include | |
488 hi! def link fortranLabelNumber Special | |
489 hi! def link fortranTarget Special | |
490 hi! def link fortranFloatIll fortranFloat | |
491 hi! def link fortranIOR fortranIO | |
492 hi! def link fortranKeywordR fortranKeyword | |
493 hi! def link fortranStringR fortranString | |
494 hi! def link fortranConditionalR fortranConditional | |
495 endif | |
7 | 496 |
6530 | 497 " CUDA |
498 hi def link fortranIntrinsicCUDA fortranIntrinsic | |
499 hi def link fortranTypeCUDA fortranType | |
500 hi def link fortranStringCUDA fortranString | |
501 | |
3281 | 502 hi def link fortranFormatSpec Identifier |
503 hi def link fortranFloat Float | |
504 hi def link fortranPreCondit PreCondit | |
505 hi def link cIncluded fortranString | |
506 hi def link cInclude Include | |
507 hi def link cPreProc PreProc | |
508 hi def link cPreCondit PreCondit | |
509 hi def link fortranParenError Error | |
510 hi def link fortranComment Comment | |
511 hi def link fortranSerialNumber Todo | |
512 hi def link fortranTab Error | |
7 | 513 |
3281 | 514 " Uncomment the next line if you use extra intrinsics provided by vendors |
515 "hi def link fortranExtraIntrinsic Function | |
7 | 516 |
517 let b:current_syntax = "fortran" | |
518 | |
3237 | 519 let &cpo = s:cpo_save |
520 unlet s:cpo_save | |
7 | 521 " vim: ts=8 tw=132 |