-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExStream.sublime-syntax
More file actions
57 lines (56 loc) · 1.27 KB
/
ExStream.sublime-syntax
File metadata and controls
57 lines (56 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
%YAML 1.2
---
name: ExStream
scope: source.ExStream
file_extensions: [ spl ]
contexts:
main:
- match: '( \- )'
captures:
0: constant.other.symbol.ExStream
- match: '(\+)'
captures:
0: constant.other.symbol.ExStream
- match: '(\*)'
captures:
0: constant.other.symbol.ExStream
- match: '(\$.*)'
captures:
0: comment.ExStream
- match: '(set)'
captures:
0: entity.name.class.ExStream
- match: '(inStreamCount|pastCount|past)'
captures:
0: string.ExStream
- match: '(s([0-9]*)*)'
captures:
0: keyword.ExStream
- match: '(\.(in|out))'
captures:
0: entity.name.type.ExStream
push:
- match: '(([0-9]*)*)'
pop: true
captures:
0: constant.language.ExStream
- match: '(\\(?:\\|"))'
captures:
0: text.ExStream
- match: '(.)'
captures:
0: text.ExStream
- include: numeric
- match: '(.)'
captures:
0: text.ExStream
numeric:
- match: '(\b\d+)'
captures:
0: constant.numeric.ExStream
- match: '((\-)?\d+)'
captures:
0: constant.numeric.ExStream
- match: '(.)'
captures:
0: text.ExStream