@journeyapps-labs/reactor-mod-editor 0.0.0-dev-20250801180850
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +22 -0
- package/dist/@types/EditorModule.d.ts +7 -0
- package/dist/@types/MonacoCommandPalletSearchEngine.d.ts +21 -0
- package/dist/@types/actions/ChangeEditorThemeAction.d.ts +9 -0
- package/dist/@types/index.d.ts +16 -0
- package/dist/@types/languages/languages.d.ts +39 -0
- package/dist/@types/languages/logs.d.ts +3 -0
- package/dist/@types/providers/EditorThemeProvider.d.ts +14 -0
- package/dist/@types/settings/StoredThemesSettings.d.ts +13 -0
- package/dist/@types/settings/VimSupportSetting.d.ts +7 -0
- package/dist/@types/shortcuts/MonacoShortcut.d.ts +9 -0
- package/dist/@types/shortcuts/MonacoShortcutHandler.d.ts +17 -0
- package/dist/@types/shortcuts/MonacoShortcutMap.d.ts +83 -0
- package/dist/@types/stores/MonacoStore.d.ts +38 -0
- package/dist/@types/stores/MonacoThemeStore.d.ts +34 -0
- package/dist/@types/stores/keybindings/KeybindingsRegistry.d.ts +46 -0
- package/dist/@types/stores/keybindings/MonacoKeybindingStore.d.ts +27 -0
- package/dist/@types/stores/keybindings/definitions.d.ts +21 -0
- package/dist/@types/stores/keybindings/utils.d.ts +2 -0
- package/dist/@types/theme/EditorThemePreferencesWidget.d.ts +26 -0
- package/dist/@types/theme/SmartEditorThemePreferencesWidget.d.ts +8 -0
- package/dist/@types/theme/UploadVSIXThemeBtnWidget.d.ts +12 -0
- package/dist/@types/theme/patchThemeService.d.ts +9 -0
- package/dist/@types/theme/theme-utils.d.ts +61 -0
- package/dist/@types/theme-reactor/editor-theme-fragment.d.ts +41 -0
- package/dist/@types/utils/paths.d.ts +23 -0
- package/dist/@types/utils/useEditorStickyHeader.d.ts +8 -0
- package/dist/@types/widgets/DualEditorWidget.d.ts +7 -0
- package/dist/@types/widgets/EditorWidget.d.ts +15 -0
- package/dist/@types/widgets/MonacoEditorWidget.d.ts +10 -0
- package/dist/@types/widgets/SimpleEditorWidget.d.ts +8 -0
- package/dist/EditorModule.js +73 -0
- package/dist/EditorModule.js.map +1 -0
- package/dist/MonacoCommandPalletSearchEngine.js +52 -0
- package/dist/MonacoCommandPalletSearchEngine.js.map +1 -0
- package/dist/actions/ChangeEditorThemeAction.js +43 -0
- package/dist/actions/ChangeEditorThemeAction.js.map +1 -0
- package/dist/index.js +33 -0
- package/dist/index.js.map +1 -0
- package/dist/languages/languages.js +155 -0
- package/dist/languages/languages.js.map +1 -0
- package/dist/languages/logs.js +110 -0
- package/dist/languages/logs.js.map +1 -0
- package/dist/providers/EditorThemeProvider.js +26 -0
- package/dist/providers/EditorThemeProvider.js.map +1 -0
- package/dist/settings/StoredThemesSettings.js +45 -0
- package/dist/settings/StoredThemesSettings.js.map +1 -0
- package/dist/settings/VimSupportSetting.js +19 -0
- package/dist/settings/VimSupportSetting.js.map +1 -0
- package/dist/shortcuts/MonacoShortcut.js +27 -0
- package/dist/shortcuts/MonacoShortcut.js.map +1 -0
- package/dist/shortcuts/MonacoShortcutHandler.js +119 -0
- package/dist/shortcuts/MonacoShortcutHandler.js.map +1 -0
- package/dist/shortcuts/MonacoShortcutMap.js +84 -0
- package/dist/shortcuts/MonacoShortcutMap.js.map +1 -0
- package/dist/stores/MonacoStore.js +119 -0
- package/dist/stores/MonacoStore.js.map +1 -0
- package/dist/stores/MonacoThemeStore.js +143 -0
- package/dist/stores/MonacoThemeStore.js.map +1 -0
- package/dist/stores/keybindings/KeybindingsRegistry.js +131 -0
- package/dist/stores/keybindings/KeybindingsRegistry.js.map +1 -0
- package/dist/stores/keybindings/MonacoKeybindingStore.js +105 -0
- package/dist/stores/keybindings/MonacoKeybindingStore.js.map +1 -0
- package/dist/stores/keybindings/definitions.js +5 -0
- package/dist/stores/keybindings/definitions.js.map +1 -0
- package/dist/stores/keybindings/utils.js +12 -0
- package/dist/stores/keybindings/utils.js.map +1 -0
- package/dist/theme/EditorThemePreferencesWidget.js +160 -0
- package/dist/theme/EditorThemePreferencesWidget.js.map +1 -0
- package/dist/theme/SmartEditorThemePreferencesWidget.js +62 -0
- package/dist/theme/SmartEditorThemePreferencesWidget.js.map +1 -0
- package/dist/theme/UploadVSIXThemeBtnWidget.js +93 -0
- package/dist/theme/UploadVSIXThemeBtnWidget.js.map +1 -0
- package/dist/theme/patchThemeService.js +146 -0
- package/dist/theme/patchThemeService.js.map +1 -0
- package/dist/theme/theme-utils.js +65 -0
- package/dist/theme/theme-utils.js.map +1 -0
- package/dist/theme-reactor/editor-theme-fragment.js +70 -0
- package/dist/theme-reactor/editor-theme-fragment.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/utils/paths.js +110 -0
- package/dist/utils/paths.js.map +1 -0
- package/dist/utils/useEditorStickyHeader.js +45 -0
- package/dist/utils/useEditorStickyHeader.js.map +1 -0
- package/dist/widgets/DualEditorWidget.js +79 -0
- package/dist/widgets/DualEditorWidget.js.map +1 -0
- package/dist/widgets/EditorWidget.js +85 -0
- package/dist/widgets/EditorWidget.js.map +1 -0
- package/dist/widgets/MonacoEditorWidget.js +29 -0
- package/dist/widgets/MonacoEditorWidget.js.map +1 -0
- package/dist/widgets/SimpleEditorWidget.js +71 -0
- package/dist/widgets/SimpleEditorWidget.js.map +1 -0
- package/dist-module/00a5102416a37050fa62.tmLanguage +1282 -0
- package/dist-module/092ac75109eb363dd826.tmLanguage +424 -0
- package/dist-module/100.bundle.js +1 -0
- package/dist-module/116.bundle.js +1 -0
- package/dist-module/173.bundle.js +1 -0
- package/dist-module/179.bundle.js +1 -0
- package/dist-module/18358219dee0ad14cc0c.tmLanguage +765 -0
- package/dist-module/195.bundle.js +1 -0
- package/dist-module/277.bundle.js +1 -0
- package/dist-module/299.bundle.js +1 -0
- package/dist-module/306.bundle.js +1 -0
- package/dist-module/344.bundle.js +1 -0
- package/dist-module/399345f371a7cb9eb1ba.tmLanguage +629 -0
- package/dist-module/404.bundle.js +4 -0
- package/dist-module/404.bundle.js.LICENSE.txt +6 -0
- package/dist-module/404.bundle.js.map +1 -0
- package/dist-module/43.bundle.js +1 -0
- package/dist-module/438.bundle.js +3 -0
- package/dist-module/438.bundle.js.map +1 -0
- package/dist-module/479.bundle.js +1 -0
- package/dist-module/491.bundle.js +1 -0
- package/dist-module/513.bundle.js +1 -0
- package/dist-module/549.bundle.js +1 -0
- package/dist-module/5e221c90a0dcbd4af855.tmLanguage +237 -0
- package/dist-module/6486a2df9ca5896c2cb6.tmLanguage +5739 -0
- package/dist-module/65.bundle.js +1 -0
- package/dist-module/66.bundle.js +1 -0
- package/dist-module/685.bundle.js +1 -0
- package/dist-module/6e3d5ec6699a8d147d29.wasm +0 -0
- package/dist-module/7.bundle.js +1 -0
- package/dist-module/703774d50b4d4526a465.tmLanguage +386 -0
- package/dist-module/717.bundle.js +2 -0
- package/dist-module/728.bundle.js +1 -0
- package/dist-module/77a7afbe329083ed0f59.tmLanguage +1183 -0
- package/dist-module/78.bundle.js +1 -0
- package/dist-module/829.bundle.js +1 -0
- package/dist-module/831968f77a9412d07cc2.tmLanguage +506 -0
- package/dist-module/862.bundle.js +1 -0
- package/dist-module/87.bundle.js +1 -0
- package/dist-module/923.bundle.js +1 -0
- package/dist-module/931.bundle.js +1 -0
- package/dist-module/933.bundle.js +3 -0
- package/dist-module/933.bundle.js.map +1 -0
- package/dist-module/970.bundle.js +1 -0
- package/dist-module/984.bundle.js +1 -0
- package/dist-module/992.bundle.js +1 -0
- package/dist-module/996.bundle.js +1 -0
- package/dist-module/9c8494157d226e95da5e.tmLanguage +1377 -0
- package/dist-module/a3e215de85a86294de8a.tmLanguage +385 -0
- package/dist-module/ba5650c2a0269a236153.tmLanguage +9349 -0
- package/dist-module/bundle.js +97 -0
- package/dist-module/bundle.js.LICENSE.txt +27 -0
- package/dist-module/bundle.js.map +1 -0
- package/dist-module/editor.worker.bundle.js +1 -0
- package/dist-module/f6283f7ccaed1249d9eb.ttf +0 -0
- package/dist-module/json.worker.bundle.js +2 -0
- package/dist-module/json.worker.bundle.js.LICENSE.txt +6 -0
- package/dist-module/yaml.worker.bundle.js +1 -0
- package/media/css.tmLanguage +1183 -0
- package/media/handlebars.tmLanguage +1282 -0
- package/media/html.tmLanguage +506 -0
- package/media/javascript.tmLanguage +5739 -0
- package/media/json.tmLanguage +386 -0
- package/media/jxml.tmLanguage +424 -0
- package/media/markdown.tmLanguage +1377 -0
- package/media/regularExpressions.tmLanguage +237 -0
- package/media/sql.tmLanguage +765 -0
- package/media/themes/ayu-light.json5 +847 -0
- package/media/themes/ayu-mirage.json5 +846 -0
- package/media/themes/journey.json5 +1061 -0
- package/media/themes/oxide.json5 +579 -0
- package/media/themes/reactor.json5 +775 -0
- package/media/themes/scarlet.json5 +836 -0
- package/media/typescript.tmLanguage +9349 -0
- package/media/xml.tmLanguage +385 -0
- package/media/yaml.tmLanguage +629 -0
- package/package.json +45 -0
- package/reactor.config.json +4 -0
|
@@ -0,0 +1,386 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>fileTypes</key>
|
|
6
|
+
<array>
|
|
7
|
+
<string>json</string>
|
|
8
|
+
<string>sublime-settings</string>
|
|
9
|
+
<string>sublime-menu</string>
|
|
10
|
+
<string>sublime-keymap</string>
|
|
11
|
+
<string>sublime-mousemap</string>
|
|
12
|
+
<string>sublime-theme</string>
|
|
13
|
+
<string>sublime-build</string>
|
|
14
|
+
<string>sublime-project</string>
|
|
15
|
+
<string>sublime-completions</string>
|
|
16
|
+
</array>
|
|
17
|
+
<key>foldingStartMarker</key>
|
|
18
|
+
<string>(?x) # turn on extended mode
|
|
19
|
+
^ # a line beginning with
|
|
20
|
+
\s* # some optional space
|
|
21
|
+
[{\[] # the start of an object or array
|
|
22
|
+
(?! # but not followed by
|
|
23
|
+
.* # whatever
|
|
24
|
+
[}\]] # and the close of an object or array
|
|
25
|
+
,? # an optional comma
|
|
26
|
+
\s* # some optional space
|
|
27
|
+
$ # at the end of the line
|
|
28
|
+
)
|
|
29
|
+
| # ...or...
|
|
30
|
+
[{\[] # the start of an object or array
|
|
31
|
+
\s* # some optional space
|
|
32
|
+
$ # at the end of the line</string>
|
|
33
|
+
<key>foldingStopMarker</key>
|
|
34
|
+
<string>(?x) # turn on extended mode
|
|
35
|
+
^ # a line beginning with
|
|
36
|
+
\s* # some optional space
|
|
37
|
+
[}\]] # and the close of an object or array</string>
|
|
38
|
+
<key>keyEquivalent</key>
|
|
39
|
+
<string>^~J</string>
|
|
40
|
+
<key>name</key>
|
|
41
|
+
<string>JSON (Javascript Next)</string>
|
|
42
|
+
<key>patterns</key>
|
|
43
|
+
<array>
|
|
44
|
+
<dict>
|
|
45
|
+
<key>include</key>
|
|
46
|
+
<string>#value</string>
|
|
47
|
+
</dict>
|
|
48
|
+
</array>
|
|
49
|
+
<key>repository</key>
|
|
50
|
+
<dict>
|
|
51
|
+
<key>array</key>
|
|
52
|
+
<dict>
|
|
53
|
+
<key>begin</key>
|
|
54
|
+
<string>\[</string>
|
|
55
|
+
<key>beginCaptures</key>
|
|
56
|
+
<dict>
|
|
57
|
+
<key>0</key>
|
|
58
|
+
<dict>
|
|
59
|
+
<key>name</key>
|
|
60
|
+
<string>punctuation.definition.array.begin.json</string>
|
|
61
|
+
</dict>
|
|
62
|
+
</dict>
|
|
63
|
+
<key>end</key>
|
|
64
|
+
<string>\]</string>
|
|
65
|
+
<key>endCaptures</key>
|
|
66
|
+
<dict>
|
|
67
|
+
<key>0</key>
|
|
68
|
+
<dict>
|
|
69
|
+
<key>name</key>
|
|
70
|
+
<string>punctuation.definition.array.end.json</string>
|
|
71
|
+
</dict>
|
|
72
|
+
</dict>
|
|
73
|
+
<key>name</key>
|
|
74
|
+
<string>meta.structure.array.json</string>
|
|
75
|
+
<key>patterns</key>
|
|
76
|
+
<array>
|
|
77
|
+
<dict>
|
|
78
|
+
<key>include</key>
|
|
79
|
+
<string>#value</string>
|
|
80
|
+
</dict>
|
|
81
|
+
<dict>
|
|
82
|
+
<key>match</key>
|
|
83
|
+
<string>,</string>
|
|
84
|
+
<key>name</key>
|
|
85
|
+
<string>punctuation.separator.array.json</string>
|
|
86
|
+
</dict>
|
|
87
|
+
<dict>
|
|
88
|
+
<key>match</key>
|
|
89
|
+
<string>[^\s\]]</string>
|
|
90
|
+
<key>name</key>
|
|
91
|
+
<string>invalid.illegal.expected-array-separator.json</string>
|
|
92
|
+
</dict>
|
|
93
|
+
</array>
|
|
94
|
+
</dict>
|
|
95
|
+
<key>comments</key>
|
|
96
|
+
<dict>
|
|
97
|
+
<key>patterns</key>
|
|
98
|
+
<array>
|
|
99
|
+
<dict>
|
|
100
|
+
<key>begin</key>
|
|
101
|
+
<string>/\*\*</string>
|
|
102
|
+
<key>captures</key>
|
|
103
|
+
<dict>
|
|
104
|
+
<key>0</key>
|
|
105
|
+
<dict>
|
|
106
|
+
<key>name</key>
|
|
107
|
+
<string>punctuation.definition.comment.json</string>
|
|
108
|
+
</dict>
|
|
109
|
+
</dict>
|
|
110
|
+
<key>end</key>
|
|
111
|
+
<string>\*/</string>
|
|
112
|
+
<key>name</key>
|
|
113
|
+
<string>comment.block.documentation.json</string>
|
|
114
|
+
</dict>
|
|
115
|
+
<dict>
|
|
116
|
+
<key>begin</key>
|
|
117
|
+
<string>/\*</string>
|
|
118
|
+
<key>captures</key>
|
|
119
|
+
<dict>
|
|
120
|
+
<key>0</key>
|
|
121
|
+
<dict>
|
|
122
|
+
<key>name</key>
|
|
123
|
+
<string>punctuation.definition.comment.json</string>
|
|
124
|
+
</dict>
|
|
125
|
+
</dict>
|
|
126
|
+
<key>end</key>
|
|
127
|
+
<string>\*/</string>
|
|
128
|
+
<key>name</key>
|
|
129
|
+
<string>comment.block.json</string>
|
|
130
|
+
</dict>
|
|
131
|
+
<dict>
|
|
132
|
+
<key>captures</key>
|
|
133
|
+
<dict>
|
|
134
|
+
<key>1</key>
|
|
135
|
+
<dict>
|
|
136
|
+
<key>name</key>
|
|
137
|
+
<string>punctuation.definition.comment.json</string>
|
|
138
|
+
</dict>
|
|
139
|
+
</dict>
|
|
140
|
+
<key>match</key>
|
|
141
|
+
<string>(//).*$\n?</string>
|
|
142
|
+
<key>name</key>
|
|
143
|
+
<string>comment.line.double-slash.js</string>
|
|
144
|
+
</dict>
|
|
145
|
+
</array>
|
|
146
|
+
</dict>
|
|
147
|
+
<key>constant</key>
|
|
148
|
+
<dict>
|
|
149
|
+
<key>match</key>
|
|
150
|
+
<string>\b(?:true|false|null)\b</string>
|
|
151
|
+
<key>name</key>
|
|
152
|
+
<string>constant.language.json</string>
|
|
153
|
+
</dict>
|
|
154
|
+
<key>number</key>
|
|
155
|
+
<dict>
|
|
156
|
+
<key>match</key>
|
|
157
|
+
<string>(?x) # turn on extended mode
|
|
158
|
+
-? # an optional minus
|
|
159
|
+
(?:
|
|
160
|
+
0 # a zero
|
|
161
|
+
| # ...or...
|
|
162
|
+
[1-9] # a 1-9 character
|
|
163
|
+
\d* # followed by zero or more digits
|
|
164
|
+
)
|
|
165
|
+
(?:
|
|
166
|
+
(?:
|
|
167
|
+
\. # a period
|
|
168
|
+
\d+ # followed by one or more digits
|
|
169
|
+
)?
|
|
170
|
+
(?:
|
|
171
|
+
[eE] # an e character
|
|
172
|
+
[+-]? # followed by an option +/-
|
|
173
|
+
\d+ # followed by one or more digits
|
|
174
|
+
)? # make exponent optional
|
|
175
|
+
)? # make decimal portion optional</string>
|
|
176
|
+
<key>name</key>
|
|
177
|
+
<string>constant.numeric.json</string>
|
|
178
|
+
</dict>
|
|
179
|
+
<key>object</key>
|
|
180
|
+
<dict>
|
|
181
|
+
<key>begin</key>
|
|
182
|
+
<string>\{</string>
|
|
183
|
+
<key>beginCaptures</key>
|
|
184
|
+
<dict>
|
|
185
|
+
<key>0</key>
|
|
186
|
+
<dict>
|
|
187
|
+
<key>name</key>
|
|
188
|
+
<string>punctuation.definition.dictionary.begin.json</string>
|
|
189
|
+
</dict>
|
|
190
|
+
</dict>
|
|
191
|
+
<key>end</key>
|
|
192
|
+
<string>\}</string>
|
|
193
|
+
<key>endCaptures</key>
|
|
194
|
+
<dict>
|
|
195
|
+
<key>0</key>
|
|
196
|
+
<dict>
|
|
197
|
+
<key>name</key>
|
|
198
|
+
<string>punctuation.definition.dictionary.end.json</string>
|
|
199
|
+
</dict>
|
|
200
|
+
</dict>
|
|
201
|
+
<key>name</key>
|
|
202
|
+
<string>meta.structure.dictionary.json</string>
|
|
203
|
+
<key>patterns</key>
|
|
204
|
+
<array>
|
|
205
|
+
<dict>
|
|
206
|
+
<key>comment</key>
|
|
207
|
+
<string>the JSON object key</string>
|
|
208
|
+
<key>include</key>
|
|
209
|
+
<string>#objectkey</string>
|
|
210
|
+
</dict>
|
|
211
|
+
<dict>
|
|
212
|
+
<key>include</key>
|
|
213
|
+
<string>#comments</string>
|
|
214
|
+
</dict>
|
|
215
|
+
<dict>
|
|
216
|
+
<key>begin</key>
|
|
217
|
+
<string>:</string>
|
|
218
|
+
<key>beginCaptures</key>
|
|
219
|
+
<dict>
|
|
220
|
+
<key>0</key>
|
|
221
|
+
<dict>
|
|
222
|
+
<key>name</key>
|
|
223
|
+
<string>punctuation.separator.dictionary.key-value.json</string>
|
|
224
|
+
</dict>
|
|
225
|
+
</dict>
|
|
226
|
+
<key>end</key>
|
|
227
|
+
<string>(,)|(?=\})</string>
|
|
228
|
+
<key>endCaptures</key>
|
|
229
|
+
<dict>
|
|
230
|
+
<key>1</key>
|
|
231
|
+
<dict>
|
|
232
|
+
<key>name</key>
|
|
233
|
+
<string>punctuation.separator.dictionary.pair.json</string>
|
|
234
|
+
</dict>
|
|
235
|
+
</dict>
|
|
236
|
+
<key>name</key>
|
|
237
|
+
<string>meta.structure.dictionary.value.json</string>
|
|
238
|
+
<key>patterns</key>
|
|
239
|
+
<array>
|
|
240
|
+
<dict>
|
|
241
|
+
<key>comment</key>
|
|
242
|
+
<string>the JSON object value</string>
|
|
243
|
+
<key>include</key>
|
|
244
|
+
<string>#value</string>
|
|
245
|
+
</dict>
|
|
246
|
+
<dict>
|
|
247
|
+
<key>match</key>
|
|
248
|
+
<string>[^\s,]</string>
|
|
249
|
+
<key>name</key>
|
|
250
|
+
<string>invalid.illegal.expected-dictionary-separator.json</string>
|
|
251
|
+
</dict>
|
|
252
|
+
</array>
|
|
253
|
+
</dict>
|
|
254
|
+
<dict>
|
|
255
|
+
<key>match</key>
|
|
256
|
+
<string>[^\s\}]</string>
|
|
257
|
+
<key>name</key>
|
|
258
|
+
<string>invalid.illegal.expected-dictionary-separator.json</string>
|
|
259
|
+
</dict>
|
|
260
|
+
</array>
|
|
261
|
+
</dict>
|
|
262
|
+
<key>string</key>
|
|
263
|
+
<dict>
|
|
264
|
+
<key>begin</key>
|
|
265
|
+
<string>"</string>
|
|
266
|
+
<key>beginCaptures</key>
|
|
267
|
+
<dict>
|
|
268
|
+
<key>0</key>
|
|
269
|
+
<dict>
|
|
270
|
+
<key>name</key>
|
|
271
|
+
<string>punctuation.definition.string.begin.json</string>
|
|
272
|
+
</dict>
|
|
273
|
+
</dict>
|
|
274
|
+
<key>end</key>
|
|
275
|
+
<string>"</string>
|
|
276
|
+
<key>endCaptures</key>
|
|
277
|
+
<dict>
|
|
278
|
+
<key>0</key>
|
|
279
|
+
<dict>
|
|
280
|
+
<key>name</key>
|
|
281
|
+
<string>punctuation.definition.string.end.json</string>
|
|
282
|
+
</dict>
|
|
283
|
+
</dict>
|
|
284
|
+
<key>name</key>
|
|
285
|
+
<string>string.quoted.double.json</string>
|
|
286
|
+
<key>patterns</key>
|
|
287
|
+
<array>
|
|
288
|
+
<dict>
|
|
289
|
+
<key>include</key>
|
|
290
|
+
<string>#stringcontent</string>
|
|
291
|
+
</dict>
|
|
292
|
+
</array>
|
|
293
|
+
</dict>
|
|
294
|
+
<key>objectkey</key>
|
|
295
|
+
<dict>
|
|
296
|
+
<key>begin</key>
|
|
297
|
+
<string>"</string>
|
|
298
|
+
<key>beginCaptures</key>
|
|
299
|
+
<dict>
|
|
300
|
+
<key>0</key>
|
|
301
|
+
<dict>
|
|
302
|
+
<key>name</key>
|
|
303
|
+
<string>punctuation.support.type.property-name.begin.json</string>
|
|
304
|
+
</dict>
|
|
305
|
+
</dict>
|
|
306
|
+
<key>end</key>
|
|
307
|
+
<string>"</string>
|
|
308
|
+
<key>endCaptures</key>
|
|
309
|
+
<dict>
|
|
310
|
+
<key>0</key>
|
|
311
|
+
<dict>
|
|
312
|
+
<key>name</key>
|
|
313
|
+
<string>punctuation.support.type.property-name.end.json</string>
|
|
314
|
+
</dict>
|
|
315
|
+
</dict>
|
|
316
|
+
<key>name</key>
|
|
317
|
+
<string>support.type.property-name.json</string>
|
|
318
|
+
<key>patterns</key>
|
|
319
|
+
<array>
|
|
320
|
+
<dict>
|
|
321
|
+
<key>include</key>
|
|
322
|
+
<string>#stringcontent</string>
|
|
323
|
+
</dict>
|
|
324
|
+
</array>
|
|
325
|
+
</dict>
|
|
326
|
+
<key>stringcontent</key>
|
|
327
|
+
<dict>
|
|
328
|
+
<key>patterns</key>
|
|
329
|
+
<array>
|
|
330
|
+
<dict>
|
|
331
|
+
<key>match</key>
|
|
332
|
+
<string>(?x) # turn on extended mode
|
|
333
|
+
\\ # a literal backslash
|
|
334
|
+
(?: # ...followed by...
|
|
335
|
+
["\\/bfnrt] # one of these characters
|
|
336
|
+
| # ...or...
|
|
337
|
+
u # a u
|
|
338
|
+
[0-9a-fA-F]{4}) # and four hex digits</string>
|
|
339
|
+
<key>name</key>
|
|
340
|
+
<string>constant.character.escape.json</string>
|
|
341
|
+
</dict>
|
|
342
|
+
<dict>
|
|
343
|
+
<key>match</key>
|
|
344
|
+
<string>\\.</string>
|
|
345
|
+
<key>name</key>
|
|
346
|
+
<string>invalid.illegal.unrecognized-string-escape.json</string>
|
|
347
|
+
</dict>
|
|
348
|
+
</array>
|
|
349
|
+
</dict>
|
|
350
|
+
<key>value</key>
|
|
351
|
+
<dict>
|
|
352
|
+
<key>patterns</key>
|
|
353
|
+
<array>
|
|
354
|
+
<dict>
|
|
355
|
+
<key>include</key>
|
|
356
|
+
<string>#constant</string>
|
|
357
|
+
</dict>
|
|
358
|
+
<dict>
|
|
359
|
+
<key>include</key>
|
|
360
|
+
<string>#number</string>
|
|
361
|
+
</dict>
|
|
362
|
+
<dict>
|
|
363
|
+
<key>include</key>
|
|
364
|
+
<string>#string</string>
|
|
365
|
+
</dict>
|
|
366
|
+
<dict>
|
|
367
|
+
<key>include</key>
|
|
368
|
+
<string>#array</string>
|
|
369
|
+
</dict>
|
|
370
|
+
<dict>
|
|
371
|
+
<key>include</key>
|
|
372
|
+
<string>#object</string>
|
|
373
|
+
</dict>
|
|
374
|
+
<dict>
|
|
375
|
+
<key>include</key>
|
|
376
|
+
<string>#comments</string>
|
|
377
|
+
</dict>
|
|
378
|
+
</array>
|
|
379
|
+
</dict>
|
|
380
|
+
</dict>
|
|
381
|
+
<key>scopeName</key>
|
|
382
|
+
<string>source.json</string>
|
|
383
|
+
<key>uuid</key>
|
|
384
|
+
<string>8f97457b-516e-48ce-83c7-08ae12fb327a</string>
|
|
385
|
+
</dict>
|
|
386
|
+
</plist>
|