-
Notifications
You must be signed in to change notification settings - Fork 0
/
Solisp.tmLanguage
executable file
·121 lines (121 loc) · 2.92 KB
/
Solisp.tmLanguage
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>fileTypes</key>
<array>
<string>solisp</string>
</array>
<key>foldingStartMarker</key>
<string>[\(\{]</string>
<key>foldingStopMarker</key>
<string>[\)\}]</string>
<key>name</key>
<string>Solisp</string>
<key>patterns</key>
<array>
<dict>
<key>captures</key>
<dict>
<key>1</key>
<dict>
<key>name</key>
<string>punctuation.definition.comment.solisp</string>
</dict>
</dict>
<key>match</key>
<string>(#).*$\n?</string>
<key>name</key>
<string>comment.line.number_sign.solisp</string>
</dict>
<dict>
<key>begin</key>
<string>"</string>
<key>beginCaptures</key>
<dict>
<key>0</key>
<dict>
<key>name</key>
<string>punctuation.definition.string.begin.solisp</string>
</dict>
</dict>
<key>end</key>
<string>"</string>
<key>endCaptures</key>
<dict>
<key>0</key>
<dict>
<key>name</key>
<string>punctuation.definition.string.end.solisp</string>
</dict>
</dict>
<key>name</key>
<string>string.quoted.double.solisp</string>
</dict>
<dict>
<key>captures</key>
<dict>
<key>2</key>
<dict>
<key>name</key>
<string>entity.name.function.solisp</string>
</dict>
</dict>
<key>match</key>
<string>\b(Set|Mutate|MapI?)\b\s+((\w)*)\b</string>
<key>name</key>
<string>support.function.solisp</string>
</dict>
<dict>
<key>match</key>
<string>\b(If|Switch|Not)\b</string>
<key>name</key>
<string>keyword.control.solisp</string>
</dict>
<dict>
<key>match</key>
<string>(((\B\-)?\b[0-9]+)\b)|(\b(true|false|newline)\b)</string>
<key>name</key>
<string>constant.numeric.solisp</string>
</dict>
<dict>
<key>match</key>
<string>\B[\+\-*/%]\B</string>
<key>name</key>
<string>keyword.operator.arithmtic.solisp</string>
</dict>
<dict>
<key>match</key>
<string>\B(==|!=|>=|<=|[><])\B</string>
<key>name</key>
<string>keyword.operator.comparison.solisp</string>
</dict>
<dict>
<key>match</key>
<string>\b[NBRDHCS][01]?[0-9]\b</string>
<key>name</key>
<string>constant.numeric.cardsolisp</string>
</dict>
<dict>
<key>match</key>
<string>\b(Standard|Jokers|this|prev|Start-Extra|GOAL|NOPLACE|NOGRAB|HIDDEN|BUTTON|SWAP|MIRRORED|MULTI|CUSTOM)\b</string>
<key>name</key>
<string>constant.other.cardsolisp</string>
</dict>
<dict>
<key>match</key>
<string>\b(Apply|On-(Grab|Place|Start)|(Grab|Place)-If)\b</string>
<key>name</key>
<string>keyword.control.cardsolisp</string>
</dict>
<dict>
<key>match</key>
<string>\b(VLayout|HLayout|VStack|HStack|PStack|Slot)\b</string>
<key>name</key>
<string>storage.type.function.cardsolisp</string>
</dict>
</array>
<key>scopeName</key>
<string>source.solisp</string>
</dict>
</plist>