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