Mercurial > vim
annotate runtime/syntax/maple.vim @ 20330:a7dbf32b5cc0 v8.2.0720
patch 8.2.0720: occasional exit when encountering an X error
Commit: https://github.com/vim/vim/commit/b1062eb23e7a7a8b44f3416e79c3b28aa6c6c229
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 9 16:11:33 2020 +0200
patch 8.2.0720: occasional exit when encountering an X error
Problem: Occasional exit when encountering an X error. (Manfred Lotz)
Solution: On an X error do not exit, do preserve files.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 09 May 2020 16:15:04 +0200 |
parents | 8edf0aeb71b9 |
children | 02bd0fe77c68 |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Maple V (based on release 4) | |
19180 | 3 " Maintainer: Charles E. Campbell <NcampObell@SdrPchip.AorgM-NOSPAM> |
16208 | 4 " Last Change: Mar 26, 2019 |
19180 | 5 " Version: 17 |
6479 | 6 " URL: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_MAPLE |
7 | 7 " |
8 " Package Function Selection: {{{1 | |
9 " Because there are a lot of packages, and because of the potential for namespace | |
10 " clashes, this version of <maple.vim> needs the user to select which, if any, | |
11 " package functions should be highlighted. Select your packages and put into your | |
12 " <.vimrc> none or more of the lines following let ...=1 lines: | |
13 " | |
14 " if exists("mvpkg_all") | |
15 " ... | |
16 " endif | |
17 " | |
18 " *OR* let mvpkg_all=1 | |
19 | |
22 | 20 " This syntax file contains all the keywords and top-level packages of Maple 9.5 |
21 " but only the contents of packages of Maple V Release 4, and the top-level | |
22 " routines of Release 4. <Jacques Carette - carette@mcmaster.ca> | |
7 | 23 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9076
diff
changeset
|
24 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9076
diff
changeset
|
25 if exists("b:current_syntax") |
7 | 26 finish |
27 endif | |
28 | |
29 " Iskeyword Effects: {{{1 | |
16208 | 30 if (v:version == 704 && has("patch-7.4.1142")) || v:version > 704 |
31 syn iskeyword $,48-57,_,a-z,@-Z | |
32 else | |
7707
41768bcebc9b
commit https://github.com/vim/vim/commit/13d5aeef56e3140a8eb8f40c7062aa1c5700f76e
Christian Brabandt <cb@256bit.org>
parents:
6479
diff
changeset
|
33 setl isk=$,48-57,_,a-z,@-Z |
7 | 34 endif |
35 | |
36 " Package Selection: {{{1 | |
37 " allow user to simply select all packages for highlighting | |
38 if exists("mvpkg_all") | |
39 let mv_DEtools = 1 | |
40 let mv_Galois = 1 | |
41 let mv_GaussInt = 1 | |
42 let mv_LREtools = 1 | |
43 let mv_combinat = 1 | |
44 let mv_combstruct = 1 | |
45 let mv_difforms = 1 | |
46 let mv_finance = 1 | |
47 let mv_genfunc = 1 | |
48 let mv_geometry = 1 | |
49 let mv_grobner = 1 | |
50 let mv_group = 1 | |
51 let mv_inttrans = 1 | |
52 let mv_liesymm = 1 | |
53 let mv_linalg = 1 | |
54 let mv_logic = 1 | |
55 let mv_networks = 1 | |
56 let mv_numapprox = 1 | |
57 let mv_numtheory = 1 | |
58 let mv_orthopoly = 1 | |
59 let mv_padic = 1 | |
60 let mv_plots = 1 | |
61 let mv_plottools = 1 | |
62 let mv_powseries = 1 | |
63 let mv_process = 1 | |
64 let mv_simplex = 1 | |
65 let mv_stats = 1 | |
66 let mv_student = 1 | |
67 let mv_sumtools = 1 | |
68 let mv_tensor = 1 | |
69 let mv_totorder = 1 | |
70 endif | |
71 | |
72 " Parenthesis/curly/brace sanity checker: {{{1 | |
22 | 73 syn case match |
74 | |
75 " parenthesis/curly/brace sanity checker | |
7 | 76 syn region mvZone matchgroup=Delimiter start="(" matchgroup=Delimiter end=")" transparent contains=ALLBUT,mvError,mvBraceError,mvCurlyError |
77 syn region mvZone matchgroup=Delimiter start="{" matchgroup=Delimiter end="}" transparent contains=ALLBUT,mvError,mvBraceError,mvParenError | |
78 syn region mvZone matchgroup=Delimiter start="\[" matchgroup=Delimiter end="]" transparent contains=ALLBUT,mvError,mvCurlyError,mvParenError | |
79 syn match mvError "[)\]}]" | |
80 syn match mvBraceError "[)}]" contained | |
81 syn match mvCurlyError "[)\]]" contained | |
82 syn match mvParenError "[\]}]" contained | |
83 syn match mvComma "[,;:]" | |
84 syn match mvSemiError "[;:]" contained | |
22 | 85 syn match mvDcolon "::" |
7 | 86 |
22 | 87 " Maple Packages, updated for Maple 9.5 |
88 syn keyword mvPackage algcurves ArrayTools Cache codegen | |
89 syn keyword mvPackage CodeGeneration CodeTools combinat combstruct | |
90 syn keyword mvPackage ContextMenu CurveFitting DEtools diffalg | |
91 syn keyword mvPackage difforms DiscreteTransforms Domains ExternalCalling | |
92 syn keyword mvPackage FileTools finance GaussInt genfunc | |
93 syn keyword mvPackage geom3d geometry gfun Groebner | |
94 syn keyword mvPackage group hashmset IntegerRelations inttrans | |
95 syn keyword mvPackage LargeExpressions LibraryTools liesymm linalg | |
96 syn keyword mvPackage LinearAlgebra LinearFunctionalSystems LinearOperators | |
97 syn keyword mvPackage ListTools Logic LREtools Maplets | |
98 syn keyword mvPackage MathematicalFunctions MathML Matlab | |
99 syn keyword mvPackage MatrixPolynomialAlgebra MmaTranslator networks | |
100 syn keyword mvPackage numapprox numtheory Optimization OreTools | |
101 syn keyword mvPackage Ore_algebra OrthogonalSeries orthopoly padic | |
102 syn keyword mvPackage PDEtools plots plottools PolynomialIdeals | |
103 syn keyword mvPackage PolynomialTools powseries process QDifferenceEquations | |
104 syn keyword mvPackage RandomTools RationalNormalForms RealDomain RootFinding | |
105 syn keyword mvPackage ScientificConstants ScientificErrorAnalysis simplex | |
106 syn keyword mvPackage Slode SNAP Sockets SoftwareMetrics | |
107 syn keyword mvPackage SolveTools Spread stats StringTools | |
108 syn keyword mvPackage Student student sumtools SumTools | |
109 syn keyword mvPackage tensor TypeTools Units VariationalCalculus | |
110 syn keyword mvPackage VectorCalculus Worksheet XMLTools | |
7 | 111 |
112 " Language Support: {{{1 | |
827 | 113 syn keyword mvTodo contained COMBAK FIXME TODO XXX |
22 | 114 if exists("g:mapleversion") && g:mapleversion < 9 |
1121 | 115 syn region mvString start=+`+ skip=+``+ end=+`+ keepend contains=mvTodo,@Spell |
116 syn region mvString start=+"+ skip=+""+ end=+"+ keepend contains=@Spell | |
22 | 117 syn region mvDelayEval start=+'+ end=+'+ keepend contains=ALLBUT,mvError,mvBraceError,mvCurlyError,mvParenError,mvSemiError |
118 syn match mvVarAssign "[a-zA-Z_][a-zA-Z_0-9]*[ \t]*:=" contains=mvAssign | |
119 syn match mvAssign ":=" contained | |
120 else | |
36 | 121 syn region mvName start=+`+ skip=+``+ end=+`+ keepend contains=mvTodo |
1121 | 122 syn region mvString start=+"+ skip=+""+ end=+"+ keepend contains=@Spell |
22 | 123 syn region mvDelayEval start=+'+ end=+'+ keepend contains=ALLBUT,mvError,mvBraceError,mvCurlyError,mvParenError |
124 syn match mvDelim "[;:]" display | |
125 syn match mvAssign ":=" | |
126 endif | |
7 | 127 |
128 " Lower-Priority Operators: {{{1 | |
129 syn match mvOper "\." | |
130 | |
131 " Number handling: {{{1 | |
132 syn match mvNumber "\<\d\+" " integer | |
133 syn match mvNumber "[-+]\=\.\d\+" " . integer | |
134 syn match mvNumber "\<\d\+\.\d\+" " integer . integer | |
135 syn match mvNumber "\<\d\+\." " integer . | |
136 syn match mvNumber "\<\d\+\.\." contains=mvRange " integer .. | |
137 | |
138 syn match mvNumber "\<\d\+e[-+]\=\d\+" " integer e [-+] integer | |
139 syn match mvNumber "[-+]\=\.\d\+e[-+]\=\d\+" " . integer e [-+] integer | |
140 syn match mvNumber "\<\d\+\.\d*e[-+]\=\d\+" " integer . [integer] e [-+] integer | |
141 | |
142 syn match mvNumber "[-+]\d\+" " integer | |
143 syn match mvNumber "[-+]\d\+\.\d\+" " integer . integer | |
144 syn match mvNumber "[-+]\d\+\." " integer . | |
145 syn match mvNumber "[-+]\d\+\.\." contains=mvRange " integer .. | |
146 | |
147 syn match mvNumber "[-+]\d\+e[-+]\=\d\+" " integer e [-+] integer | |
148 syn match mvNumber "[-+]\d\+\.\d*e[-+]\=\d\+" " integer . [integer] e [-+] integer | |
149 | |
150 syn match mvRange "\.\." | |
151 | |
152 " Operators: {{{1 | |
22 | 153 syn keyword mvOper and not or xor implies union intersect subset minus mod |
7 | 154 syn match mvOper "<>\|[<>]=\|[<>]\|=" |
155 syn match mvOper "&+\|&-\|&\*\|&\/\|&" | |
156 syn match mvError "\.\.\." | |
157 | |
158 " MapleV Statements: ? statement {{{1 | |
22 | 159 |
160 " MapleV Statements: ? statement | |
7 | 161 " Split into booleans, conditionals, operators, repeat-logic, etc |
22 | 162 syn keyword mvBool true false FAIL |
7 | 163 syn keyword mvCond elif else fi if then |
2152 | 164 syn match mvCond "end\s\+if" |
7 | 165 |
166 syn keyword mvRepeat by for in to | |
167 syn keyword mvRepeat do from od while | |
2152 | 168 syn match mvRepeat "end\s\+do" |
7 | 169 |
170 syn keyword mvSpecial NULL | |
171 syn match mvSpecial "\[\]\|{}" | |
172 | |
22 | 173 if exists("g:mapleversion") && g:mapleversion < 9 |
174 syn keyword mvStatement Order fail options read save | |
175 syn keyword mvStatement break local point remember stop | |
176 syn keyword mvStatement done mod proc restart with | |
177 syn keyword mvStatement end mods quit return | |
178 syn keyword mvStatement error next | |
179 else | |
180 syn keyword mvStatement option options read save | |
181 syn keyword mvStatement break local remember stop | |
182 syn keyword mvStatement done mod proc restart | |
183 syn keyword mvStatement end mods quit return | |
184 syn keyword mvStatement error next try catch | |
185 syn keyword mvStatement finally assuming global export | |
186 syn keyword mvStatement module description use | |
187 endif | |
7 | 188 |
189 " Builtin Constants: ? constants {{{1 | |
190 syn keyword mvConstant Catalan I gamma infinity | |
22 | 191 syn keyword mvConstant Pi |
7 | 192 |
193 " Comments: DEBUG, if in a comment, is specially highlighted. {{{1 | |
194 syn keyword mvDebug contained DEBUG | |
195 syn cluster mvCommentGroup contains=mvTodo,mvDebug,@Spell | |
196 syn match mvComment "#.*$" contains=@mvCommentGroup | |
197 | |
198 " Basic Library Functions: ? index[function] | |
199 syn keyword mvLibrary $ @ @@ ERROR | |
200 syn keyword mvLibrary AFactor KelvinHer arctan factor log rhs | |
201 syn keyword mvLibrary AFactors KelvinKei arctanh factors log10 root | |
202 syn keyword mvLibrary AiryAi KelvinKer argument fclose lprint roots | |
203 syn keyword mvLibrary AiryBi LambertW array feof map round | |
204 syn keyword mvLibrary AngerJ Lcm assign fflush map2 rsolve | |
205 syn keyword mvLibrary Berlekamp LegendreE assigned filepos match savelib | |
206 syn keyword mvLibrary BesselI LegendreEc asspar fixdiv matrix scanf | |
207 syn keyword mvLibrary BesselJ LegendreEc1 assume float max searchtext | |
208 syn keyword mvLibrary BesselK LegendreF asubs floor maximize sec | |
209 syn keyword mvLibrary BesselY LegendreKc asympt fnormal maxnorm sech | |
210 syn keyword mvLibrary Beta LegendreKc1 attribute fopen maxorder select | |
211 syn keyword mvLibrary C LegendrePi bernstein forget member seq | |
212 syn keyword mvLibrary Chi LegendrePic branches fortran min series | |
213 syn keyword mvLibrary Ci LegendrePic1 bspline fprintf minimize setattribute | |
214 syn keyword mvLibrary CompSeq Li cat frac minpoly shake | |
215 syn keyword mvLibrary Content Linsolve ceil freeze modp showprofile | |
216 syn keyword mvLibrary D MOLS chrem fremove modp1 showtime | |
217 syn keyword mvLibrary DESol Maple_floats close frontend modp2 sign | |
218 syn keyword mvLibrary Det MeijerG close fscanf modpol signum | |
219 syn keyword mvLibrary Diff Norm coeff fsolve mods simplify | |
220 syn keyword mvLibrary Dirac Normal coeffs galois msolve sin | |
221 syn keyword mvLibrary DistDeg Nullspace coeftayl gc mtaylor singular | |
222 syn keyword mvLibrary Divide Power collect gcd mul sinh | |
223 syn keyword mvLibrary Ei Powmod combine gcdex nextprime sinterp | |
224 syn keyword mvLibrary Eigenvals Prem commutat genpoly nops solve | |
225 syn keyword mvLibrary EllipticCE Primfield comparray harmonic norm sort | |
226 syn keyword mvLibrary EllipticCK Primitive compoly has normal sparse | |
227 syn keyword mvLibrary EllipticCPi Primpart conjugate hasfun numboccur spline | |
228 syn keyword mvLibrary EllipticE ProbSplit content hasoption numer split | |
229 syn keyword mvLibrary EllipticF Product convergs hastype op splits | |
230 syn keyword mvLibrary EllipticK Psi convert heap open sprem | |
231 syn keyword mvLibrary EllipticModulus Quo coords history optimize sprintf | |
232 syn keyword mvLibrary EllipticNome RESol copy hypergeom order sqrfree | |
233 syn keyword mvLibrary EllipticPi Randpoly cos iFFT parse sqrt | |
234 syn keyword mvLibrary Eval Randprime cosh icontent pclose sscanf | |
235 syn keyword mvLibrary Expand Ratrecon cost identity pclose ssystem | |
236 syn keyword mvLibrary FFT Re cot igcd pdesolve stack | |
237 syn keyword mvLibrary Factor Rem coth igcdex piecewise sturm | |
238 syn keyword mvLibrary Factors Resultant csc ilcm plot sturmseq | |
239 syn keyword mvLibrary FresnelC RootOf csch ilog plot3d subs | |
240 syn keyword mvLibrary FresnelS Roots csgn ilog10 plotsetup subsop | |
241 syn keyword mvLibrary Fresnelf SPrem dawson implicitdiff pochhammer substring | |
242 syn keyword mvLibrary Fresnelg Searchtext define indets pointto sum | |
243 syn keyword mvLibrary Frobenius Shi degree index poisson surd | |
244 syn keyword mvLibrary GAMMA Si denom indexed polar symmdiff | |
245 syn keyword mvLibrary GaussAGM Smith depends indices polylog symmetric | |
246 syn keyword mvLibrary Gaussejord Sqrfree diagonal inifcn polynom system | |
247 syn keyword mvLibrary Gausselim Ssi diff ininame powmod table | |
248 syn keyword mvLibrary Gcd StruveH dilog initialize prem tan | |
249 syn keyword mvLibrary Gcdex StruveL dinterp insert prevprime tanh | |
250 syn keyword mvLibrary HankelH1 Sum disassemble int primpart testeq | |
251 syn keyword mvLibrary HankelH2 Svd discont interface print testfloat | |
252 syn keyword mvLibrary Heaviside TEXT discrim interp printf thaw | |
253 syn keyword mvLibrary Hermite Trace dismantle invfunc procbody thiele | |
254 syn keyword mvLibrary Im WeberE divide invztrans procmake time | |
255 syn keyword mvLibrary Indep WeierstrassP dsolve iostatus product translate | |
256 syn keyword mvLibrary Interp WeierstrassPPrime eliminate iperfpow proot traperror | |
257 syn keyword mvLibrary Inverse WeierstrassSigma ellipsoid iquo property trigsubs | |
258 syn keyword mvLibrary Irreduc WeierstrassZeta entries iratrecon protect trunc | |
259 syn keyword mvLibrary Issimilar Zeta eqn irem psqrt type | |
260 syn keyword mvLibrary JacobiAM abs erf iroot quo typematch | |
261 syn keyword mvLibrary JacobiCD add erfc irreduc radnormal unames | |
262 syn keyword mvLibrary JacobiCN addcoords eulermac iscont radsimp unapply | |
263 syn keyword mvLibrary JacobiCS addressof eval isdifferentiable rand unassign | |
264 syn keyword mvLibrary JacobiDC algebraic evala isolate randomize unload | |
265 syn keyword mvLibrary JacobiDN algsubs evalapply ispoly randpoly unprotect | |
266 syn keyword mvLibrary JacobiDS alias evalb isqrfree range updatesR4 | |
267 syn keyword mvLibrary JacobiNC allvalues evalc isqrt rationalize userinfo | |
268 syn keyword mvLibrary JacobiND anames evalf issqr ratrecon value | |
269 syn keyword mvLibrary JacobiNS antisymm evalfint latex readbytes vector | |
270 syn keyword mvLibrary JacobiSC applyop evalgf lattice readdata verify | |
271 syn keyword mvLibrary JacobiSD arccos evalhf lcm readlib whattype | |
272 syn keyword mvLibrary JacobiSN arccosh evalm lcoeff readline with | |
273 syn keyword mvLibrary JacobiTheta1 arccot evaln leadterm readstat writebytes | |
274 syn keyword mvLibrary JacobiTheta2 arccoth evalr length realroot writedata | |
275 syn keyword mvLibrary JacobiTheta3 arccsc exp lexorder recipoly writeline | |
276 syn keyword mvLibrary JacobiTheta4 arccsch expand lhs rem writestat | |
277 syn keyword mvLibrary JacobiZeta arcsec expandoff limit remove writeto | |
278 syn keyword mvLibrary KelvinBei arcsech expandon ln residue zip | |
279 syn keyword mvLibrary KelvinBer arcsin extract lnGAMMA resultant ztrans | |
280 syn keyword mvLibrary KelvinHei arcsinh | |
281 | |
282 | |
283 " == PACKAGES ======================================================= {{{1 | |
284 " Note: highlighting of package functions is now user-selectable by package. | |
285 | |
286 " Package: DEtools differential equations tools {{{2 | |
287 if exists("mv_DEtools") | |
288 syn keyword mvPkg_DEtools DEnormal Dchangevar autonomous dfieldplot reduceOrder untranslate | |
289 syn keyword mvPkg_DEtools DEplot PDEchangecoords convertAlg indicialeq regularsp varparam | |
290 syn keyword mvPkg_DEtools DEplot3d PDEplot convertsys phaseportrait translate | |
291 endif | |
292 | |
293 " Package: Domains: create domains of computation {{{2 | |
294 if exists("mv_Domains") | |
295 endif | |
296 | |
297 " Package: GF: Galois Fields {{{2 | |
298 if exists("mv_GF") | |
299 syn keyword mvPkg_Galois galois | |
300 endif | |
301 | |
302 " Package: GaussInt: Gaussian Integers {{{2 | |
303 if exists("mv_GaussInt") | |
304 syn keyword mvPkg_GaussInt GIbasis GIfactor GIissqr GInorm GIquadres GIsmith | |
305 syn keyword mvPkg_GaussInt GIchrem GIfactors GIlcm GInormal GIquo GIsqrfree | |
306 syn keyword mvPkg_GaussInt GIdivisor GIgcd GImcmbine GIorder GIrem GIsqrt | |
307 syn keyword mvPkg_GaussInt GIfacpoly GIgcdex GInearest GIphi GIroots GIunitnormal | |
308 syn keyword mvPkg_GaussInt GIfacset GIhermite GInodiv GIprime GIsieve | |
309 endif | |
310 | |
311 " Package: LREtools: manipulate linear recurrence relations {{{2 | |
312 if exists("mv_LREtools") | |
313 syn keyword mvPkg_LREtools REcontent REprimpart REtodelta delta hypergeomsols ratpolysols | |
314 syn keyword mvPkg_LREtools REcreate REreduceorder REtoproc dispersion polysols shift | |
315 syn keyword mvPkg_LREtools REplot REtoDE constcoeffsol | |
316 endif | |
317 | |
318 " Package: combinat: combinatorial functions {{{2 | |
319 if exists("mv_combinat") | |
320 syn keyword mvPkg_combinat Chi composition graycode numbcomb permute randperm | |
321 syn keyword mvPkg_combinat bell conjpart inttovec numbcomp powerset stirling1 | |
322 syn keyword mvPkg_combinat binomial decodepart lastpart numbpart prevpart stirling2 | |
323 syn keyword mvPkg_combinat cartprod encodepart multinomial numbperm randcomb subsets | |
324 syn keyword mvPkg_combinat character fibonacci nextpart partition randpart vectoint | |
325 syn keyword mvPkg_combinat choose firstpart | |
326 endif | |
327 | |
328 " Package: combstruct: combinatorial structures {{{2 | |
329 if exists("mv_combstruct") | |
330 syn keyword mvPkg_combstruct allstructs draw iterstructs options specification structures | |
331 syn keyword mvPkg_combstruct count finished nextstruct | |
332 endif | |
333 | |
334 " Package: difforms: differential forms {{{2 | |
335 if exists("mv_difforms") | |
336 syn keyword mvPkg_difforms const defform formpart parity scalarpart wdegree | |
337 syn keyword mvPkg_difforms d form mixpar scalar simpform wedge | |
338 endif | |
339 | |
340 " Package: finance: financial mathematics {{{2 | |
341 if exists("mv_finance") | |
342 syn keyword mvPkg_finance amortization cashflows futurevalue growingperpetuity mv_finance presentvalue | |
343 syn keyword mvPkg_finance annuity effectiverate growingannuity levelcoupon perpetuity yieldtomaturity | |
344 syn keyword mvPkg_finance blackscholes | |
345 endif | |
346 | |
347 " Package: genfunc: rational generating functions {{{2 | |
348 if exists("mv_genfunc") | |
349 syn keyword mvPkg_genfunc rgf_charseq rgf_expand rgf_hybrid rgf_pfrac rgf_sequence rgf_term | |
350 syn keyword mvPkg_genfunc rgf_encode rgf_findrecur rgf_norm rgf_relate rgf_simp termscale | |
351 endif | |
352 | |
353 " Package: geometry: Euclidean geometry {{{2 | |
354 if exists("mv_geometry") | |
355 syn keyword mvPkg_geometry circle dsegment hyperbola parabola segment triangle | |
356 syn keyword mvPkg_geometry conic ellipse line point square | |
357 endif | |
358 | |
359 " Package: grobner: Grobner bases {{{2 | |
360 if exists("mv_grobner") | |
361 syn keyword mvPkg_grobner finduni gbasis leadmon normalf solvable spoly | |
362 syn keyword mvPkg_grobner finite gsolve | |
363 endif | |
364 | |
365 " Package: group: permutation and finitely-presented groups {{{2 | |
366 if exists("mv_group") | |
367 syn keyword mvPkg_group DerivedS areconjugate cosets grouporder issubgroup permrep | |
368 syn keyword mvPkg_group LCS center cosrep inter mulperms pres | |
369 syn keyword mvPkg_group NormalClosure centralizer derived invperm normalizer subgrel | |
370 syn keyword mvPkg_group RandElement convert grelgroup isabelian orbit type | |
371 syn keyword mvPkg_group Sylow core groupmember isnormal permgroup | |
372 endif | |
373 | |
374 " Package: inttrans: integral transforms {{{2 | |
375 if exists("mv_inttrans") | |
376 syn keyword mvPkg_inttrans addtable fouriercos hankel invfourier invlaplace mellin | |
377 syn keyword mvPkg_inttrans fourier fouriersin hilbert invhilbert laplace | |
378 endif | |
379 | |
380 " Package: liesymm: Lie symmetries {{{2 | |
381 if exists("mv_liesymm") | |
382 syn keyword mvPkg_liesymm &^ TD depvars getform mixpar vfix | |
383 syn keyword mvPkg_liesymm &mod annul determine hasclosure prolong wcollect | |
384 syn keyword mvPkg_liesymm Eta autosimp dvalue hook reduce wdegree | |
385 syn keyword mvPkg_liesymm Lie close extvars indepvars setup wedgeset | |
386 syn keyword mvPkg_liesymm Lrank d getcoeff makeforms translate wsubs | |
387 endif | |
388 | |
389 " Package: linalg: Linear algebra {{{2 | |
390 if exists("mv_linalg") | |
391 syn keyword mvPkg_linalg GramSchmidt coldim equal indexfunc mulcol singval | |
392 syn keyword mvPkg_linalg JordanBlock colspace exponential innerprod multiply smith | |
393 syn keyword mvPkg_linalg LUdecomp colspan extend intbasis norm stack | |
394 syn keyword mvPkg_linalg QRdecomp companion ffgausselim inverse normalize submatrix | |
395 syn keyword mvPkg_linalg addcol cond fibonacci ismith orthog subvector | |
396 syn keyword mvPkg_linalg addrow copyinto forwardsub issimilar permanent sumbasis | |
397 syn keyword mvPkg_linalg adjoint crossprod frobenius iszero pivot swapcol | |
398 syn keyword mvPkg_linalg angle curl gausselim jacobian potential swaprow | |
399 syn keyword mvPkg_linalg augment definite gaussjord jordan randmatrix sylvester | |
400 syn keyword mvPkg_linalg backsub delcols geneqns kernel randvector toeplitz | |
401 syn keyword mvPkg_linalg band delrows genmatrix laplacian rank trace | |
402 syn keyword mvPkg_linalg basis det grad leastsqrs references transpose | |
403 syn keyword mvPkg_linalg bezout diag hadamard linsolve row vandermonde | |
404 syn keyword mvPkg_linalg blockmatrix diverge hermite matadd rowdim vecpotent | |
405 syn keyword mvPkg_linalg charmat dotprod hessian matrix rowspace vectdim | |
406 syn keyword mvPkg_linalg charpoly eigenval hilbert minor rowspan vector | |
407 syn keyword mvPkg_linalg cholesky eigenvect htranspose minpoly scalarmul wronskian | |
408 syn keyword mvPkg_linalg col entermatrix ihermite | |
409 endif | |
410 | |
411 " Package: logic: Boolean logic {{{2 | |
412 if exists("mv_logic") | |
413 syn keyword mvPkg_logic MOD2 bsimp distrib environ randbool tautology | |
414 syn keyword mvPkg_logic bequal canon dual frominert satisfy toinert | |
415 endif | |
416 | |
417 " Package: networks: graph networks {{{2 | |
418 if exists("mv_networks") | |
419 syn keyword mvPkg_networks acycpoly connect dinic graph mincut show | |
420 syn keyword mvPkg_networks addedge connectivity djspantree graphical mindegree shrink | |
421 syn keyword mvPkg_networks addvertex contract dodecahedron gsimp neighbors span | |
422 syn keyword mvPkg_networks adjacency countcuts draw gunion new spanpoly | |
423 syn keyword mvPkg_networks allpairs counttrees duplicate head octahedron spantree | |
424 syn keyword mvPkg_networks ancestor cube edges icosahedron outdegree tail | |
425 syn keyword mvPkg_networks arrivals cycle ends incidence path tetrahedron | |
426 syn keyword mvPkg_networks bicomponents cyclebase eweight incident petersen tuttepoly | |
427 syn keyword mvPkg_networks charpoly daughter flow indegree random vdegree | |
428 syn keyword mvPkg_networks chrompoly degreeseq flowpoly induce rank vertices | |
429 syn keyword mvPkg_networks complement delete fundcyc isplanar rankpoly void | |
430 syn keyword mvPkg_networks complete departures getlabel maxdegree shortpathtree vweight | |
431 syn keyword mvPkg_networks components diameter girth | |
432 endif | |
433 | |
434 " Package: numapprox: numerical approximation {{{2 | |
435 if exists("mv_numapprox") | |
436 syn keyword mvPkg_numapprox chebdeg chebsort fnorm laurent minimax remez | |
437 syn keyword mvPkg_numapprox chebmult chebyshev hornerform laurent pade taylor | |
438 syn keyword mvPkg_numapprox chebpade confracform infnorm minimax | |
439 endif | |
440 | |
441 " Package: numtheory: number theory {{{2 | |
442 if exists("mv_numtheory") | |
443 syn keyword mvPkg_numtheory B cyclotomic invcfrac mcombine nthconver primroot | |
444 syn keyword mvPkg_numtheory F divisors invphi mersenne nthdenom quadres | |
445 syn keyword mvPkg_numtheory GIgcd euler isolve minkowski nthnumer rootsunity | |
446 syn keyword mvPkg_numtheory J factorEQ isprime mipolys nthpow safeprime | |
447 syn keyword mvPkg_numtheory L factorset issqrfree mlog order sigma | |
448 syn keyword mvPkg_numtheory M fermat ithprime mobius pdexpand sq2factor | |
449 syn keyword mvPkg_numtheory bernoulli ifactor jacobi mroot phi sum2sqr | |
450 syn keyword mvPkg_numtheory bigomega ifactors kronecker msqrt pprimroot tau | |
451 syn keyword mvPkg_numtheory cfrac imagunit lambda nearestp prevprime thue | |
452 syn keyword mvPkg_numtheory cfracpol index legendre nextprime | |
453 endif | |
454 | |
455 " Package: orthopoly: orthogonal polynomials {{{2 | |
456 if exists("mv_orthopoly") | |
457 syn keyword mvPkg_orthopoly G H L P T U | |
458 endif | |
459 | |
460 " Package: padic: p-adic numbers {{{2 | |
461 if exists("mv_padic") | |
462 syn keyword mvPkg_padic evalp function orderp ratvaluep rootp valuep | |
463 syn keyword mvPkg_padic expansion lcoeffp ordp | |
464 endif | |
465 | |
466 " Package: plots: graphics package {{{2 | |
467 if exists("mv_plots") | |
468 syn keyword mvPkg_plots animate coordplot3d gradplot3d listplot3d polarplot setoptions3d | |
469 syn keyword mvPkg_plots animate3d cylinderplot implicitplot loglogplot polygonplot spacecurve | |
470 syn keyword mvPkg_plots changecoords densityplot implicitplot3d logplot polygonplot3d sparsematrixplot | |
471 syn keyword mvPkg_plots complexplot display inequal matrixplot polyhedraplot sphereplot | |
472 syn keyword mvPkg_plots complexplot3d display3d listcontplot odeplot replot surfdata | |
473 syn keyword mvPkg_plots conformal fieldplot listcontplot3d pareto rootlocus textplot | |
474 syn keyword mvPkg_plots contourplot fieldplot3d listdensityplot pointplot semilogplot textplot3d | |
475 syn keyword mvPkg_plots contourplot3d gradplot listplot pointplot3d setoptions tubeplot | |
476 syn keyword mvPkg_plots coordplot | |
477 endif | |
478 | |
479 " Package: plottools: basic graphical objects {{{2 | |
480 if exists("mv_plottools") | |
481 syn keyword mvPkg_plottools arc curve dodecahedron hyperbola pieslice semitorus | |
482 syn keyword mvPkg_plottools arrow cutin ellipse icosahedron point sphere | |
483 syn keyword mvPkg_plottools circle cutout ellipticArc line polygon tetrahedron | |
484 syn keyword mvPkg_plottools cone cylinder hemisphere octahedron rectangle torus | |
485 syn keyword mvPkg_plottools cuboid disk hexahedron | |
486 endif | |
487 | |
488 " Package: powseries: formal power series {{{2 | |
489 if exists("mv_powseries") | |
490 syn keyword mvPkg_powseries compose multiply powcreate powlog powsolve reversion | |
491 syn keyword mvPkg_powseries evalpow negative powdiff powpoly powsqrt subtract | |
492 syn keyword mvPkg_powseries inverse powadd powexp powseries quotient tpsform | |
493 syn keyword mvPkg_powseries multconst powcos powint powsin | |
494 endif | |
495 | |
496 " Package: process: (Unix)-multi-processing {{{2 | |
497 if exists("mv_process") | |
498 syn keyword mvPkg_process block fork pclose pipe popen wait | |
499 syn keyword mvPkg_process exec kill | |
500 endif | |
501 | |
502 " Package: simplex: linear optimization {{{2 | |
503 if exists("mv_simplex") | |
504 syn keyword mvPkg_simplex NONNEGATIVE cterm dual maximize pivoteqn setup | |
505 syn keyword mvPkg_simplex basis define_zero equality minimize pivotvar standardize | |
506 syn keyword mvPkg_simplex convexhull display feasible pivot ratio | |
507 endif | |
508 | |
509 " Package: stats: statistics {{{2 | |
510 if exists("mv_stats") | |
511 syn keyword mvPkg_stats anova describe fit random statevalf statplots | |
512 endif | |
513 | |
514 " Package: student: student calculus {{{2 | |
515 if exists("mv_student") | |
516 syn keyword mvPkg_student D Product distance isolate middlesum rightsum | |
517 syn keyword mvPkg_student Diff Sum equate leftbox midpoint showtangent | |
518 syn keyword mvPkg_student Doubleint Tripleint extrema leftsum minimize simpson | |
519 syn keyword mvPkg_student Int changevar integrand makeproc minimize slope | |
520 syn keyword mvPkg_student Limit combine intercept maximize powsubs trapezoid | |
521 syn keyword mvPkg_student Lineint completesquare intparts middlebox rightbox value | |
522 syn keyword mvPkg_student Point | |
523 endif | |
524 | |
525 " Package: sumtools: indefinite and definite sums {{{2 | |
526 if exists("mv_sumtools") | |
527 syn keyword mvPkg_sumtools Hypersum extended_gosper hyperrecursion hyperterm sumrecursion sumtohyper | |
528 syn keyword mvPkg_sumtools Sumtohyper gosper hypersum simpcomb | |
529 endif | |
530 | |
531 " Package: tensor: tensor computations and General Relativity {{{2 | |
532 if exists("mv_tensor") | |
533 syn keyword mvPkg_tensor Christoffel1 Riemann connexF display_allGR get_compts partial_diff | |
534 syn keyword mvPkg_tensor Christoffel2 RiemannF contract dual get_rank permute_indices | |
535 syn keyword mvPkg_tensor Einstein Weyl convertNP entermetric invars petrov | |
536 syn keyword mvPkg_tensor Jacobian act cov_diff exterior_diff invert prod | |
537 syn keyword mvPkg_tensor Killing_eqns antisymmetrize create exterior_prod lin_com raise | |
538 syn keyword mvPkg_tensor Levi_Civita change_basis d1metric frame lower symmetrize | |
539 syn keyword mvPkg_tensor Lie_diff commutator d2metric geodesic_eqns npcurve tensorsGR | |
540 syn keyword mvPkg_tensor Ricci compare directional_diff get_char npspin transform | |
541 syn keyword mvPkg_tensor Ricciscalar conj displayGR | |
542 endif | |
543 | |
544 " Package: totorder: total orders on names {{{2 | |
545 if exists("mv_totorder") | |
546 syn keyword mvPkg_totorder forget init ordering tassume tis | |
547 endif | |
548 " ===================================================================== | |
549 | |
550 " Highlighting: Define the default highlighting. {{{1 | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
9076
diff
changeset
|
551 " Only when an item doesn't have highlighting yet |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
552 if !exists("skip_maplev_syntax_inits") |
7 | 553 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
554 " Maple->Maple Links {{{2 |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
555 hi def link mvBraceError mvError |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
556 hi def link mvCurlyError mvError |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
557 hi def link mvDebug mvTodo |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
558 hi def link mvParenError mvError |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
559 hi def link mvPkg_DEtools mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
560 hi def link mvPkg_Galois mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
561 hi def link mvPkg_GaussInt mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
562 hi def link mvPkg_LREtools mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
563 hi def link mvPkg_combinat mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
564 hi def link mvPkg_combstruct mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
565 hi def link mvPkg_difforms mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
566 hi def link mvPkg_finance mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
567 hi def link mvPkg_genfunc mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
568 hi def link mvPkg_geometry mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
569 hi def link mvPkg_grobner mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
570 hi def link mvPkg_group mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
571 hi def link mvPkg_inttrans mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
572 hi def link mvPkg_liesymm mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
573 hi def link mvPkg_linalg mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
574 hi def link mvPkg_logic mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
575 hi def link mvPkg_networks mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
576 hi def link mvPkg_numapprox mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
577 hi def link mvPkg_numtheory mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
578 hi def link mvPkg_orthopoly mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
579 hi def link mvPkg_padic mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
580 hi def link mvPkg_plots mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
581 hi def link mvPkg_plottools mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
582 hi def link mvPkg_powseries mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
583 hi def link mvPkg_process mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
584 hi def link mvPkg_simplex mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
585 hi def link mvPkg_stats mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
586 hi def link mvPkg_student mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
587 hi def link mvPkg_sumtools mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
588 hi def link mvPkg_tensor mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
589 hi def link mvPkg_totorder mvPkgFunc |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
590 hi def link mvRange mvOper |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
591 hi def link mvSemiError mvError |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
592 hi def link mvDelim Delimiter |
7 | 593 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
594 " Maple->Standard Links {{{2 |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
595 hi def link mvAssign Delimiter |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
596 hi def link mvBool Boolean |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
597 hi def link mvComma Delimiter |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
598 hi def link mvComment Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
599 hi def link mvCond Conditional |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
600 hi def link mvConstant Number |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
601 hi def link mvDelayEval Label |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
602 hi def link mvDcolon Delimiter |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
603 hi def link mvError Error |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
604 hi def link mvLibrary Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
605 hi def link mvNumber Number |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
606 hi def link mvOper Operator |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
607 hi def link mvAssign Delimiter |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
608 hi def link mvPackage Type |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
609 hi def link mvPkgFunc Function |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
610 hi def link mvPktOption Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
611 hi def link mvRepeat Repeat |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
612 hi def link mvSpecial Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
613 hi def link mvStatement Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
614 hi def link mvName String |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
615 hi def link mvString String |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
616 hi def link mvTodo Todo |
7 | 617 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
618 endif |
7 | 619 |
620 " Current Syntax: {{{1 | |
621 let b:current_syntax = "maple" | |
622 " vim: ts=20 fdm=marker |