Mercurial > vim
annotate runtime/syntax/matlab.vim @ 23810:8152b7daebad v8.2.2446
patch 8.2.2446: setting 'term' empty has different error if compiled with GUI
Commit: https://github.com/vim/vim/commit/5daa91162699e4f8b54f9d1caaaab2715038941c
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Feb 1 18:39:47 2021 +0100
patch 8.2.2446: setting 'term' empty has different error if compiled with GUI
Problem: Setting 'term' empty has different error if compiled with GUI.
Solution: Insert "else". (closes https://github.com/vim/vim/issues/7766)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 01 Feb 2021 18:45:06 +0100 |
parents | 235cbf491430 |
children |
rev | line source |
---|---|
7 | 1 " Vim syntax file |
2 " Language: Matlab | |
10734 | 3 " Maintainer: Alex Burka <vim@alexburka.com> |
2034 | 4 " Credits: Preben 'Peppe' Guldberg <peppe-vim@wielders.org> |
10734 | 5 " Maurizio Tranchero - maurizio(.)tranchero(@)gmail(.)com |
7 | 6 " Original author: Mario Eusebio |
17036 | 7 " Last Change: June 10 2019 |
8 " added highlight rule for double-quoted string literals | |
2908 | 9 " Change History: |
17036 | 10 " - double-quoted string literals added |
10734 | 11 " - now highlights cell-mode separator comments |
2043 | 12 " - 'global' and 'persistent' keyword are now recognized |
7 | 13 |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2908
diff
changeset
|
14 " quit when a syntax file was already loaded |
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2908
diff
changeset
|
15 if exists("b:current_syntax") |
7 | 16 finish |
17 endif | |
18 | |
19 syn keyword matlabStatement return | |
20 syn keyword matlabLabel case switch | |
21 syn keyword matlabConditional else elseif end if otherwise | |
22 syn keyword matlabRepeat do for while | |
2034 | 23 " MT_ADDON - added exception-specific keywords |
24 syn keyword matlabExceptions try catch | |
25 syn keyword matlabOO classdef properties events methods | |
7 | 26 |
27 syn keyword matlabTodo contained TODO | |
2043 | 28 syn keyword matlabScope global persistent |
7 | 29 |
30 " If you do not want these operators lit, uncommment them and the "hi link" below | |
31 syn match matlabArithmeticOperator "[-+]" | |
32 syn match matlabArithmeticOperator "\.\=[*/\\^]" | |
33 syn match matlabRelationalOperator "[=~]=" | |
34 syn match matlabRelationalOperator "[<>]=\=" | |
35 syn match matlabLogicalOperator "[&|~]" | |
36 | |
37 syn match matlabLineContinuation "\.\{3}" | |
38 | |
39 "syn match matlabIdentifier "\<\a\w*\>" | |
40 | |
41 " String | |
2034 | 42 " MT_ADDON - added 'skip' in order to deal with 'tic' escaping sequence |
2043 | 43 syn region matlabString start=+'+ end=+'+ oneline skip=+''+ |
17036 | 44 syn region matlabStringArray start=+"+ end=+"+ oneline skip=+""+ |
7 | 45 |
46 " If you don't like tabs | |
47 syn match matlabTab "\t" | |
48 | |
49 " Standard numbers | |
50 syn match matlabNumber "\<\d\+[ij]\=\>" | |
51 " floating point number, with dot, optional exponent | |
52 syn match matlabFloat "\<\d\+\(\.\d*\)\=\([edED][-+]\=\d\+\)\=[ij]\=\>" | |
53 " floating point number, starting with a dot, optional exponent | |
54 syn match matlabFloat "\.\d\+\([edED][-+]\=\d\+\)\=[ij]\=\>" | |
55 | |
56 " Transpose character and delimiters: Either use just [...] or (...) aswell | |
57 syn match matlabDelimiter "[][]" | |
58 "syn match matlabDelimiter "[][()]" | |
59 syn match matlabTransposeOperator "[])a-zA-Z0-9.]'"lc=1 | |
60 | |
61 syn match matlabSemicolon ";" | |
62 | |
2043 | 63 syn match matlabComment "%.*$" contains=matlabTodo,matlabTab |
2034 | 64 " MT_ADDON - correctly highlights words after '...' as comments |
2043 | 65 syn match matlabComment "\.\.\..*$" contains=matlabTodo,matlabTab |
66 syn region matlabMultilineComment start=+%{+ end=+%}+ contains=matlabTodo,matlabTab | |
10734 | 67 syn match matlabCellComment "^%%.*$" |
7 | 68 |
69 syn keyword matlabOperator break zeros default margin round ones rand | |
70 syn keyword matlabOperator ceil floor size clear zeros eye mean std cov | |
71 | |
72 syn keyword matlabFunction error eval function | |
73 | |
74 syn keyword matlabImplicit abs acos atan asin cos cosh exp log prod sum | |
2908 | 75 syn keyword matlabImplicit log10 max min sign sin sinh sqrt tan reshape |
7 | 76 |
77 syn match matlabError "-\=\<\d\+\.\d\+\.[^*/\\^]" | |
78 syn match matlabError "-\=\<\d\+\.\d\+[eEdD][-+]\=\d\+\.\([^*/\\^]\)" | |
79 | |
80 " Define the default highlighting. | |
10048
43efa4f5a8ea
commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents:
2908
diff
changeset
|
81 " Only when an item doesn't have highlighting yet |
7 | 82 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
83 hi def link matlabTransposeOperator matlabOperator |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
84 hi def link matlabOperator Operator |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
85 hi def link matlabLineContinuation Special |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
86 hi def link matlabLabel Label |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
87 hi def link matlabConditional Conditional |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
88 hi def link matlabExceptions Conditional |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
89 hi def link matlabRepeat Repeat |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
90 hi def link matlabTodo Todo |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
91 hi def link matlabString String |
17036 | 92 hi def link matlabStringArray String |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
93 hi def link matlabDelimiter Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
94 hi def link matlabTransposeOther Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
95 hi def link matlabNumber Number |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
96 hi def link matlabFloat Float |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
97 hi def link matlabFunction Function |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
98 hi def link matlabError Error |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
99 hi def link matlabImplicit matlabStatement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
100 hi def link matlabStatement Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
101 hi def link matlabOO Statement |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
102 hi def link matlabSemicolon SpecialChar |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
103 hi def link matlabComment Comment |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
104 hi def link matlabMultilineComment Comment |
10734 | 105 hi def link matlabCellComment Todo |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
106 hi def link matlabScope Type |
7 | 107 |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
108 hi def link matlabArithmeticOperator matlabOperator |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
109 hi def link matlabRelationalOperator matlabOperator |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
110 hi def link matlabLogicalOperator matlabOperator |
7 | 111 |
112 "optional highlighting | |
10051
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
113 "hi def link matlabIdentifier Identifier |
46763b01cd9a
commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents:
10048
diff
changeset
|
114 "hi def link matlabTab Error |
7 | 115 |
116 | |
117 let b:current_syntax = "matlab" | |
118 | |
119 "EOF vim: ts=8 noet tw=100 sw=8 sts=0 |