@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,237 @@
|
|
|
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
|
+
<key>hideFromUser</key>
|
|
8
|
+
<true/>
|
|
9
|
+
<key>name</key>
|
|
10
|
+
<string>Regular Expressions (JavaScript)</string>
|
|
11
|
+
<key>patterns</key>
|
|
12
|
+
<array>
|
|
13
|
+
<dict>
|
|
14
|
+
<key>include</key>
|
|
15
|
+
<string>#regexp</string>
|
|
16
|
+
</dict>
|
|
17
|
+
</array>
|
|
18
|
+
<key>repository</key>
|
|
19
|
+
<dict>
|
|
20
|
+
<key>regex-character-class</key>
|
|
21
|
+
<dict>
|
|
22
|
+
<key>patterns</key>
|
|
23
|
+
<array>
|
|
24
|
+
<dict>
|
|
25
|
+
<key>match</key>
|
|
26
|
+
<string>\\[wWsSdD]|\.</string>
|
|
27
|
+
<key>name</key>
|
|
28
|
+
<string>constant.character.character-class.regexp</string>
|
|
29
|
+
</dict>
|
|
30
|
+
<dict>
|
|
31
|
+
<key>match</key>
|
|
32
|
+
<string>\\([0-7]{3}|x\h\h|u\h\h\h\h)</string>
|
|
33
|
+
<key>name</key>
|
|
34
|
+
<string>constant.character.numeric.regexp</string>
|
|
35
|
+
</dict>
|
|
36
|
+
<dict>
|
|
37
|
+
<key>match</key>
|
|
38
|
+
<string>\\c[A-Z]</string>
|
|
39
|
+
<key>name</key>
|
|
40
|
+
<string>constant.character.control.regexp</string>
|
|
41
|
+
</dict>
|
|
42
|
+
<dict>
|
|
43
|
+
<key>match</key>
|
|
44
|
+
<string>\\.</string>
|
|
45
|
+
<key>name</key>
|
|
46
|
+
<string>constant.character.escape.backslash.regexp</string>
|
|
47
|
+
</dict>
|
|
48
|
+
</array>
|
|
49
|
+
</dict>
|
|
50
|
+
<key>regexp</key>
|
|
51
|
+
<dict>
|
|
52
|
+
<key>patterns</key>
|
|
53
|
+
<array>
|
|
54
|
+
<dict>
|
|
55
|
+
<key>match</key>
|
|
56
|
+
<string>\\[bB]|\^|\$</string>
|
|
57
|
+
<key>name</key>
|
|
58
|
+
<string>keyword.control.anchor.regexp</string>
|
|
59
|
+
</dict>
|
|
60
|
+
<dict>
|
|
61
|
+
<key>match</key>
|
|
62
|
+
<string>\\[1-9]\d*</string>
|
|
63
|
+
<key>name</key>
|
|
64
|
+
<string>keyword.other.back-reference.regexp</string>
|
|
65
|
+
</dict>
|
|
66
|
+
<dict>
|
|
67
|
+
<key>match</key>
|
|
68
|
+
<string>[?+*]|\{(\d+,\d+|\d+,|,\d+|\d+)\}\??</string>
|
|
69
|
+
<key>name</key>
|
|
70
|
+
<string>keyword.operator.quantifier.regexp</string>
|
|
71
|
+
</dict>
|
|
72
|
+
<dict>
|
|
73
|
+
<key>match</key>
|
|
74
|
+
<string>\|</string>
|
|
75
|
+
<key>name</key>
|
|
76
|
+
<string>keyword.operator.or.regexp</string>
|
|
77
|
+
</dict>
|
|
78
|
+
<dict>
|
|
79
|
+
<key>begin</key>
|
|
80
|
+
<string>(\()((\?=)|(\?!))</string>
|
|
81
|
+
<key>beginCaptures</key>
|
|
82
|
+
<dict>
|
|
83
|
+
<key>1</key>
|
|
84
|
+
<dict>
|
|
85
|
+
<key>name</key>
|
|
86
|
+
<string>punctuation.definition.group.regexp</string>
|
|
87
|
+
</dict>
|
|
88
|
+
<key>3</key>
|
|
89
|
+
<dict>
|
|
90
|
+
<key>name</key>
|
|
91
|
+
<string>meta.assertion.look-ahead.regexp</string>
|
|
92
|
+
</dict>
|
|
93
|
+
<key>4</key>
|
|
94
|
+
<dict>
|
|
95
|
+
<key>name</key>
|
|
96
|
+
<string>meta.assertion.negative-look-ahead.regexp</string>
|
|
97
|
+
</dict>
|
|
98
|
+
</dict>
|
|
99
|
+
<key>end</key>
|
|
100
|
+
<string>(\))</string>
|
|
101
|
+
<key>endCaptures</key>
|
|
102
|
+
<dict>
|
|
103
|
+
<key>1</key>
|
|
104
|
+
<dict>
|
|
105
|
+
<key>name</key>
|
|
106
|
+
<string>punctuation.definition.group.regexp</string>
|
|
107
|
+
</dict>
|
|
108
|
+
</dict>
|
|
109
|
+
<key>name</key>
|
|
110
|
+
<string>meta.group.assertion.regexp</string>
|
|
111
|
+
<key>patterns</key>
|
|
112
|
+
<array>
|
|
113
|
+
<dict>
|
|
114
|
+
<key>include</key>
|
|
115
|
+
<string>#regexp</string>
|
|
116
|
+
</dict>
|
|
117
|
+
</array>
|
|
118
|
+
</dict>
|
|
119
|
+
<dict>
|
|
120
|
+
<key>begin</key>
|
|
121
|
+
<string>\((\?:)?</string>
|
|
122
|
+
<key>beginCaptures</key>
|
|
123
|
+
<dict>
|
|
124
|
+
<key>0</key>
|
|
125
|
+
<dict>
|
|
126
|
+
<key>name</key>
|
|
127
|
+
<string>punctuation.definition.group.regexp</string>
|
|
128
|
+
</dict>
|
|
129
|
+
</dict>
|
|
130
|
+
<key>end</key>
|
|
131
|
+
<string>\)</string>
|
|
132
|
+
<key>endCaptures</key>
|
|
133
|
+
<dict>
|
|
134
|
+
<key>0</key>
|
|
135
|
+
<dict>
|
|
136
|
+
<key>name</key>
|
|
137
|
+
<string>punctuation.definition.group.regexp</string>
|
|
138
|
+
</dict>
|
|
139
|
+
</dict>
|
|
140
|
+
<key>name</key>
|
|
141
|
+
<string>meta.group.regexp</string>
|
|
142
|
+
<key>patterns</key>
|
|
143
|
+
<array>
|
|
144
|
+
<dict>
|
|
145
|
+
<key>include</key>
|
|
146
|
+
<string>#regexp</string>
|
|
147
|
+
</dict>
|
|
148
|
+
</array>
|
|
149
|
+
</dict>
|
|
150
|
+
<dict>
|
|
151
|
+
<key>begin</key>
|
|
152
|
+
<string>(\[)(\^)?</string>
|
|
153
|
+
<key>beginCaptures</key>
|
|
154
|
+
<dict>
|
|
155
|
+
<key>1</key>
|
|
156
|
+
<dict>
|
|
157
|
+
<key>name</key>
|
|
158
|
+
<string>punctuation.definition.character-class.regexp</string>
|
|
159
|
+
</dict>
|
|
160
|
+
<key>2</key>
|
|
161
|
+
<dict>
|
|
162
|
+
<key>name</key>
|
|
163
|
+
<string>keyword.operator.negation.regexp</string>
|
|
164
|
+
</dict>
|
|
165
|
+
</dict>
|
|
166
|
+
<key>end</key>
|
|
167
|
+
<string>(\])</string>
|
|
168
|
+
<key>endCaptures</key>
|
|
169
|
+
<dict>
|
|
170
|
+
<key>1</key>
|
|
171
|
+
<dict>
|
|
172
|
+
<key>name</key>
|
|
173
|
+
<string>punctuation.definition.character-class.regexp</string>
|
|
174
|
+
</dict>
|
|
175
|
+
</dict>
|
|
176
|
+
<key>name</key>
|
|
177
|
+
<string>constant.other.character-class.set.regexp</string>
|
|
178
|
+
<key>patterns</key>
|
|
179
|
+
<array>
|
|
180
|
+
<dict>
|
|
181
|
+
<key>captures</key>
|
|
182
|
+
<dict>
|
|
183
|
+
<key>1</key>
|
|
184
|
+
<dict>
|
|
185
|
+
<key>name</key>
|
|
186
|
+
<string>constant.character.numeric.regexp</string>
|
|
187
|
+
</dict>
|
|
188
|
+
<key>2</key>
|
|
189
|
+
<dict>
|
|
190
|
+
<key>name</key>
|
|
191
|
+
<string>constant.character.control.regexp</string>
|
|
192
|
+
</dict>
|
|
193
|
+
<key>3</key>
|
|
194
|
+
<dict>
|
|
195
|
+
<key>name</key>
|
|
196
|
+
<string>constant.character.escape.backslash.regexp</string>
|
|
197
|
+
</dict>
|
|
198
|
+
<key>4</key>
|
|
199
|
+
<dict>
|
|
200
|
+
<key>name</key>
|
|
201
|
+
<string>constant.character.numeric.regexp</string>
|
|
202
|
+
</dict>
|
|
203
|
+
<key>5</key>
|
|
204
|
+
<dict>
|
|
205
|
+
<key>name</key>
|
|
206
|
+
<string>constant.character.control.regexp</string>
|
|
207
|
+
</dict>
|
|
208
|
+
<key>6</key>
|
|
209
|
+
<dict>
|
|
210
|
+
<key>name</key>
|
|
211
|
+
<string>constant.character.escape.backslash.regexp</string>
|
|
212
|
+
</dict>
|
|
213
|
+
</dict>
|
|
214
|
+
<key>match</key>
|
|
215
|
+
<string>(?:.|(\\(?:[0-7]{3}|x\h\h|u\h\h\h\h))|(\\c[A-Z])|(\\.))\-(?:[^\]\\]|(\\(?:[0-7]{3}|x\h\h|u\h\h\h\h))|(\\c[A-Z])|(\\.))</string>
|
|
216
|
+
<key>name</key>
|
|
217
|
+
<string>constant.other.character-class.range.regexp</string>
|
|
218
|
+
</dict>
|
|
219
|
+
<dict>
|
|
220
|
+
<key>include</key>
|
|
221
|
+
<string>#regex-character-class</string>
|
|
222
|
+
</dict>
|
|
223
|
+
</array>
|
|
224
|
+
</dict>
|
|
225
|
+
<dict>
|
|
226
|
+
<key>include</key>
|
|
227
|
+
<string>#regex-character-class</string>
|
|
228
|
+
</dict>
|
|
229
|
+
</array>
|
|
230
|
+
</dict>
|
|
231
|
+
</dict>
|
|
232
|
+
<key>scopeName</key>
|
|
233
|
+
<string>source.js.regexp</string>
|
|
234
|
+
<key>uuid</key>
|
|
235
|
+
<string>AC8679DE-3AC7-4056-84F9-69A7ADC29DDD</string>
|
|
236
|
+
</dict>
|
|
237
|
+
</plist>
|