@node-red/editor-client 2.0.4 → 2.1.0-beta.2
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/locales/en-US/editor.json +37 -7
- package/locales/ko/editor.json +1 -1
- package/package.json +2 -2
- package/public/red/about +109 -0
- package/public/red/images/node-red-256.svg +1 -0
- package/public/red/keymap.json +13 -2
- package/public/red/red.js +6122 -3663
- package/public/red/red.min.js +1 -1
- package/public/red/style.min.css +2 -2
- package/public/red/tours/first-flow.js +80 -0
- package/public/red/tours/welcome.js +135 -0
- package/public/tours/first-flow.js +82 -0
- package/public/types/node/assert.d.ts +127 -0
- package/public/types/node/async_hooks.d.ts +229 -0
- package/public/types/node/buffer.d.ts +25 -1
- package/public/types/node/child_process.d.ts +514 -6
- package/public/types/node/cluster.d.ts +265 -0
- package/public/types/node/console.d.ts +136 -1
- package/public/types/node/crypto.d.ts +1189 -1
- package/public/types/node/dgram.d.ts +144 -1
- package/public/types/node/dns.d.ts +383 -10
- package/public/types/node/domain.d.ts +27 -1
- package/public/types/node/events.d.ts +81 -1
- package/public/types/node/fs.d.ts +2273 -1
- package/public/types/node/globals.d.ts +616 -1
- package/public/types/node/http.d.ts +489 -1
- package/public/types/node/http2.d.ts +961 -0
- package/public/types/node/https.d.ts +142 -0
- package/public/types/node/module.d.ts +55 -0
- package/public/types/node/net.d.ts +296 -1
- package/public/types/node/os.d.ts +242 -1
- package/public/types/node/path.d.ts +156 -1
- package/public/types/node/perf_hooks.d.ts +274 -0
- package/public/types/node/process.d.ts +412 -1
- package/public/types/node/querystring.d.ts +31 -1
- package/public/types/node/readline.d.ts +173 -0
- package/public/types/node/stream.d.ts +358 -0
- package/public/types/node/string_decoder.d.ts +10 -0
- package/public/types/node/timers.d.ts +19 -0
- package/public/types/node/tls.d.ts +783 -0
- package/public/types/node/trace_events.d.ts +64 -0
- package/public/types/node/tty.d.ts +69 -0
- package/public/types/node/url.d.ts +119 -1
- package/public/types/node/util.d.ts +210 -0
- package/public/types/node/v8.d.ts +190 -0
- package/public/types/node/vm.d.ts +155 -0
- package/public/types/node/wasi.d.ts +89 -0
- package/public/types/node/worker_threads.d.ts +241 -0
- package/public/types/node/zlib.d.ts +364 -0
- package/public/types/node-red/func.d.ts +1 -1
- package/public/types/node-red/util.d.ts +1 -1
- package/public/vendor/ace/worker-jsonata.js +1 -1
- package/public/vendor/monaco/dist/ThirdPartyNotices.txt +192 -192
- package/public/vendor/monaco/dist/css.worker.js +1 -1
- package/public/vendor/monaco/dist/editor.js +2 -2
- package/public/vendor/monaco/dist/editor.worker.js +1 -1
- package/public/vendor/monaco/dist/html.worker.js +1 -1
- package/public/vendor/monaco/dist/json.worker.js +1 -1
- package/public/vendor/monaco/dist/locale/cs.js +44 -10
- package/public/vendor/monaco/dist/locale/de.js +46 -12
- package/public/vendor/monaco/dist/locale/es.js +46 -12
- package/public/vendor/monaco/dist/locale/fr.js +43 -9
- package/public/vendor/monaco/dist/locale/it.js +45 -11
- package/public/vendor/monaco/dist/locale/ja.js +45 -11
- package/public/vendor/monaco/dist/locale/ko.js +44 -10
- package/public/vendor/monaco/dist/locale/pl.js +42 -8
- package/public/vendor/monaco/dist/locale/pt-br.js +49 -15
- package/public/vendor/monaco/dist/locale/qps-ploc.js +1445 -0
- package/public/vendor/monaco/dist/locale/ru.js +48 -14
- package/public/vendor/monaco/dist/locale/tr.js +49 -15
- package/public/vendor/monaco/dist/locale/zh-hans.js +48 -14
- package/public/vendor/monaco/dist/locale/zh-hant.js +45 -11
- package/public/vendor/monaco/dist/theme/monoindustrial.json +228 -0
- package/public/vendor/monaco/dist/theme/solarized-dark.json +1082 -0
- package/public/vendor/monaco/dist/ts.worker.js +2 -2
- package/public/vendor/vendor.js +4 -4
- package/templates/index.mst +5 -1
|
@@ -169,6 +169,7 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
169
169
|
"autoClosingQuotes": "控制編輯器是否應在使用者新增開始引號後,自動加上關閉引號。",
|
|
170
170
|
"autoIndent": "控制編輯器是否應在使用者鍵入、貼上、移動或縮排行時自動調整縮排。",
|
|
171
171
|
"autoSurround": "控制編輯器是否應在鍵入引號或括弧時自動包圍選取範圍。",
|
|
172
|
+
"bracketPairColorization.enabled": "控制是否啟用成對方括弧著色。使用 'workbench.colorCustomizations' 覆寫括弧亮顯顏色。",
|
|
172
173
|
"codeActions": "在編輯器中啟用程式碼動作燈泡。",
|
|
173
174
|
"codeLens": "控制編輯器是否顯示 codelens。",
|
|
174
175
|
"codeLensFontFamily": "控制 CodeLens 的字型家族。",
|
|
@@ -211,6 +212,9 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
211
212
|
"editor.find.autoFindInSelection.always": "一律自動開啟 [在選取範圍中尋找]。",
|
|
212
213
|
"editor.find.autoFindInSelection.multiline": "選取多行內容時,自動開啟 [在選取範圍中尋找]。",
|
|
213
214
|
"editor.find.autoFindInSelection.never": "永不自動開啟 [在選取範圍中尋找] (預設)。",
|
|
215
|
+
"editor.find.seedSearchStringFromSelection.always": "一律從編輯器選取範圍中植入搜尋字串,包括游標位置的字。",
|
|
216
|
+
"editor.find.seedSearchStringFromSelection.never": "永不從編輯器選取範圍中植入搜尋字串。",
|
|
217
|
+
"editor.find.seedSearchStringFromSelection.selection": "只有來自編輯器選取範圍中的植入搜尋字串。",
|
|
214
218
|
"editor.gotoLocation.multiple.deprecated": "此設定已淘汰,請改用 'editor.editor.gotoLocation.multipleDefinitions' 或 'editor.editor.gotoLocation.multipleImplementations' 等單獨設定。",
|
|
215
219
|
"editor.gotoLocation.multiple.goto": "前往主要結果,並對其他人啟用無預覽瀏覽",
|
|
216
220
|
"editor.gotoLocation.multiple.gotoAndPeek": "移至主要結果並顯示預覽檢視",
|
|
@@ -248,13 +252,14 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
248
252
|
"emptySelectionClipboard": "控制複製時不選取任何項目是否會複製目前程式行。",
|
|
249
253
|
"fastScrollSensitivity": "按下 `Alt` 時的捲動速度乘數。",
|
|
250
254
|
"find.addExtraSpaceOnTop": "控制尋找小工具是否應在編輯器頂端額外新增行。若為 true,當您可看到尋找小工具時,您的捲動範圍會超過第一行。",
|
|
251
|
-
"find.autoFindInSelection": "
|
|
255
|
+
"find.autoFindInSelection": "控制自動開啟 [在選取範圍中尋找] 的條件。",
|
|
252
256
|
"find.cursorMoveOnType": "控制在輸入期間是否要跳過游標來尋找相符的項目。",
|
|
253
257
|
"find.globalFindClipboard": "控制尋找小工具是否在 macOS 上讀取或修改共用尋找剪貼簿。",
|
|
254
258
|
"find.loop": "當再也找不到其他相符項目時,控制是否自動從開頭 (或結尾) 重新開始搜尋。",
|
|
255
259
|
"find.seedSearchStringFromSelection": "控制 [尋找小工具] 中的搜尋字串是否來自編輯器選取項目。",
|
|
256
260
|
"folding": "控制編輯器是否啟用程式碼摺疊功能。",
|
|
257
261
|
"foldingHighlight": "控制編輯器是否應將折疊的範圍醒目提示。",
|
|
262
|
+
"foldingImportsByDefault": "控制編輯器是否會自動摺疊匯入範圍。",
|
|
258
263
|
"foldingStrategy": "控制計算資料夾範圍的策略。",
|
|
259
264
|
"foldingStrategy.auto": "使用語言特定摺疊策略 (如果可用),否則使用縮排式策略。",
|
|
260
265
|
"foldingStrategy.indentation": "使用縮排式摺疊策略。",
|
|
@@ -274,14 +279,15 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
274
279
|
"hover.enabled": "控制是否顯示暫留。",
|
|
275
280
|
"hover.sticky": "控制當滑鼠移過時,是否應保持顯示暫留。",
|
|
276
281
|
"inlayHints.enable": "啟用編輯器中的內嵌提示。",
|
|
277
|
-
"inlayHints.fontFamily": "
|
|
282
|
+
"inlayHints.fontFamily": "控制編輯器中,內嵌提示的字型家族。設定為空白時,會使用 `#editor.fontFamily#`。",
|
|
278
283
|
"inlayHints.fontSize": "控制編輯器中的內嵌提示字型大小。設定為 `0` 時,會使用 90% 的 `#editor.fontSize#`。",
|
|
279
284
|
"inlineSuggest.enabled": "控制是否要在編輯器中自動顯示內嵌建議。",
|
|
280
285
|
"inlineSuggest.mode": "控制要用於呈現內嵌建議的模式。",
|
|
281
286
|
"inlineSuggest.mode.prefix": "只有在取代文字是插入文字的前置詞時,才呈現內嵌建議。",
|
|
282
|
-
"inlineSuggest.mode.
|
|
287
|
+
"inlineSuggest.mode.subword": "只有在取代文字是插入文字的部分字組時,才呈現內嵌建議。",
|
|
288
|
+
"inlineSuggest.mode.subwordSmart": "如果取代文字是插入文字的部分字組,但部分字組必須在游標之後開始時,只呈現內嵌建議。",
|
|
283
289
|
"letterSpacing": "控制字母間距 (像素)。",
|
|
284
|
-
"lineHeight": "控制行高。\r\n - 使用 0 從字型大小自動計算行高。\r\n - 使用介於 0 和 8 之間的值作為字型大小的乘數。\r\n -
|
|
290
|
+
"lineHeight": "控制行高。\r\n - 使用 0 從字型大小自動計算行高。\r\n - 使用介於 0 和 8 之間的值作為字型大小的乘數。\r\n - 大於或等於 8 的值將用來作為有效值。",
|
|
285
291
|
"lineNumbers": "控制行號的顯示。",
|
|
286
292
|
"lineNumbers.interval": "每 10 行顯示行號。",
|
|
287
293
|
"lineNumbers.off": "不顯示行號。",
|
|
@@ -342,6 +348,17 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
342
348
|
"scrollBeyondLastColumn": "控制編輯器水平捲動的額外字元數。",
|
|
343
349
|
"scrollBeyondLastLine": "控制編輯器是否捲動到最後一行之外。",
|
|
344
350
|
"scrollPredominantAxis": "同時進行垂直與水平捲動時,僅沿主軸捲動。避免在軌跡板上進行垂直捲動時發生水平漂移。",
|
|
351
|
+
"scrollbar.horizontal": "控制項水平捲軸的可見度。",
|
|
352
|
+
"scrollbar.horizontal.auto": "水平捲軸只有在必要時才可見。",
|
|
353
|
+
"scrollbar.horizontal.fit": "水平捲軸永遠隱藏。",
|
|
354
|
+
"scrollbar.horizontal.visible": "水平捲軸永遠可見。",
|
|
355
|
+
"scrollbar.horizontalScrollbarSize": "水平捲軸的高度。",
|
|
356
|
+
"scrollbar.scrollByPage": "控制項按一下是否按頁面滾動或跳到按一下位置。",
|
|
357
|
+
"scrollbar.vertical": "控制項垂直捲軸的可見度。",
|
|
358
|
+
"scrollbar.vertical.auto": "垂直捲軸只有在必要時才可見。",
|
|
359
|
+
"scrollbar.vertical.fit": "垂直捲軸永遠隱藏。",
|
|
360
|
+
"scrollbar.vertical.visible": "垂直捲軸永遠可見。",
|
|
361
|
+
"scrollbar.verticalScrollbarSize": "垂直捲軸的寬度。",
|
|
345
362
|
"selectLeadingAndTrailingWhitespace": "是否應一律選取前置和後置的空白字元。",
|
|
346
363
|
"selectionClipboard": "控制是否支援 Linux 主要剪貼簿。",
|
|
347
364
|
"selectionHighlight": "控制編輯器是否應醒目提示與選取項目類似的相符項目。",
|
|
@@ -366,7 +383,8 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
366
383
|
"suggest.preview": "控制是否要在編輯器中預覽建議結果。",
|
|
367
384
|
"suggest.previewMode": "控制要用於呈現建議預覽的模式。",
|
|
368
385
|
"suggest.previewMode.prefix": "只有在取代文字是插入文字的前置詞時,才呈現預覽。",
|
|
369
|
-
"suggest.previewMode.
|
|
386
|
+
"suggest.previewMode.subword": "只有在取代文字是插入文字的部分字組時,才呈現預覽。",
|
|
387
|
+
"suggest.previewMode.subwordSmart": "如果取代文字是插入文字的部分字組,或它是插入文字的前置詞,即呈現預覽。",
|
|
370
388
|
"suggest.shareSuggestSelections": "控制記錄的建議選取項目是否在多個工作區和視窗間共用 (需要 `#editor.suggestSelection#`)。",
|
|
371
389
|
"suggest.showIcons": "控制要在建議中顯示或隱藏圖示。",
|
|
372
390
|
"suggest.showInlineDetails": "控制建議詳細資料是以內嵌於標籤的方式顯示,還是只在詳細資料小工具中顯示",
|
|
@@ -484,6 +502,13 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
484
502
|
"deprecatedEditorActiveLineNumber": "Id 已取代。請改用 'editorLineNumber.activeForeground' 。",
|
|
485
503
|
"editorActiveIndentGuide": "使用中編輯器縮排輔助線的色彩。",
|
|
486
504
|
"editorActiveLineNumber": "編輯器使用中行號的色彩",
|
|
505
|
+
"editorBracketHighlightForeground1": "括弧 (1) 的前景色彩。需要啟用成對方括弧著色。",
|
|
506
|
+
"editorBracketHighlightForeground2": "括弧 (2) 的前景色彩。需要啟用成對方括弧著色。",
|
|
507
|
+
"editorBracketHighlightForeground3": "括弧 (3) 的前景色彩。需要啟用成對方括弧著色。",
|
|
508
|
+
"editorBracketHighlightForeground4": "括弧 (4) 的前景色彩。需要啟用成對方括弧著色。",
|
|
509
|
+
"editorBracketHighlightForeground5": "括弧 (5) 的前景色彩。需要啟用成對方括弧著色。",
|
|
510
|
+
"editorBracketHighlightForeground6": "括弧 (6) 的前景色彩。需要啟用成對方括弧著色。",
|
|
511
|
+
"editorBracketHighlightUnexpectedBracketForeground": "未預期括弧的前景色彩。",
|
|
487
512
|
"editorBracketMatchBackground": "成對括號背景色彩",
|
|
488
513
|
"editorBracketMatchBorder": "成對括號邊框色彩",
|
|
489
514
|
"editorCodeLensForeground": "編輯器程式碼濾鏡的前景色彩",
|
|
@@ -573,9 +598,9 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
573
598
|
"source.label": "來源動作..."
|
|
574
599
|
},
|
|
575
600
|
"vs/editor/contrib/codeAction/lightBulbWidget": {
|
|
576
|
-
"
|
|
577
|
-
"
|
|
578
|
-
"
|
|
601
|
+
"codeAction": "顯示程式碼動作",
|
|
602
|
+
"codeActionWithKb": "顯示程式碼動作 ({0})",
|
|
603
|
+
"preferredcodeActionWithKb": "顯示程式碼動作。偏好的快速修正可用 ({0})"
|
|
579
604
|
},
|
|
580
605
|
"vs/editor/contrib/codelens/codelensController": {
|
|
581
606
|
"showLensOnLine": "顯示目前行的 Code Lens 命令"
|
|
@@ -622,13 +647,13 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
622
647
|
"label.closeButton": "關閉",
|
|
623
648
|
"label.find": "尋找",
|
|
624
649
|
"label.matchesLocation": "{1} 的 {0}",
|
|
625
|
-
"label.nextMatchButton": "
|
|
650
|
+
"label.nextMatchButton": "下一個相符項目",
|
|
626
651
|
"label.noResults": "查無結果",
|
|
627
|
-
"label.previousMatchButton": "
|
|
652
|
+
"label.previousMatchButton": "上一個相符項目",
|
|
628
653
|
"label.replace": "取代",
|
|
629
654
|
"label.replaceAllButton": "全部取代",
|
|
630
655
|
"label.replaceButton": "取代",
|
|
631
|
-
"label.toggleReplaceButton": "
|
|
656
|
+
"label.toggleReplaceButton": "切換取代",
|
|
632
657
|
"label.toggleSelectionFind": "在選取範圍中尋找",
|
|
633
658
|
"placeholder.find": "尋找",
|
|
634
659
|
"placeholder.replace": "取代",
|
|
@@ -644,6 +669,9 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
644
669
|
"foldBackgroundBackground": "已摺疊範圍後的背景色彩。色彩不得處於不透明狀態,以免隱藏底層裝飾。",
|
|
645
670
|
"foldLevelAction.label": "摺疊層級 {0}",
|
|
646
671
|
"foldRecursivelyAction.label": "以遞迴方式摺疊",
|
|
672
|
+
"gotoNextFold.label": "移至下個摺疊",
|
|
673
|
+
"gotoParentFold.label": "移至父代摺疊",
|
|
674
|
+
"gotoPreviousFold.label": "移至上個摺疊",
|
|
647
675
|
"toggleFoldAction.label": "切換摺疊",
|
|
648
676
|
"unFoldRecursivelyAction.label": "以遞迴方式展開",
|
|
649
677
|
"unfoldAction.label": "展開",
|
|
@@ -688,8 +716,11 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
688
716
|
"change": "{0} 個問題 (共 {1} 個)",
|
|
689
717
|
"editorMarkerNavigationBackground": "編輯器標記導覽小工具的背景。",
|
|
690
718
|
"editorMarkerNavigationError": "編輯器標記導覽小工具錯誤的色彩。",
|
|
719
|
+
"editorMarkerNavigationErrorHeaderBackground": "編輯器標記導覽小工具錯誤標題背景。",
|
|
691
720
|
"editorMarkerNavigationInfo": "編輯器標記導覽小工具資訊的色彩",
|
|
721
|
+
"editorMarkerNavigationInfoHeaderBackground": "編輯器標記導覽小工具資訊標題背景。",
|
|
692
722
|
"editorMarkerNavigationWarning": "編輯器標記導覽小工具警告的色彩。",
|
|
723
|
+
"editorMarkerNavigationWarningBackground": "編輯器標記導覽小工具警告標題背景。",
|
|
693
724
|
"marker aria": "{0} 於 {1}。",
|
|
694
725
|
"problems": "{0} 個問題 (共 {1} 個)"
|
|
695
726
|
},
|
|
@@ -797,6 +828,7 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
797
828
|
},
|
|
798
829
|
"vs/editor/contrib/inlineCompletions/inlineCompletionsHoverParticipant": {
|
|
799
830
|
"acceptInlineSuggestion": "接受",
|
|
831
|
+
"inlineSuggestionFollows": "建議:",
|
|
800
832
|
"showNextInlineSuggestion": "下一步",
|
|
801
833
|
"showPreviousInlineSuggestion": "上一步"
|
|
802
834
|
},
|
|
@@ -1156,6 +1188,8 @@ this.MonacoEnvironment = this.MonacoEnvironment || {}; this.MonacoEnvironment.Lo
|
|
|
1156
1188
|
"missing.chord": "按鍵組合 ({0}, {1}) 不是命令。"
|
|
1157
1189
|
},
|
|
1158
1190
|
"vs/platform/list/browser/listService": {
|
|
1191
|
+
"Fast Scroll Sensitivity": "按 Alt 時的捲動速度乘數。",
|
|
1192
|
+
"Mouse Wheel Scroll Sensitivity": "要用於滑鼠滾輪捲動事件 deltaX 和 deltaY 的乘數。",
|
|
1159
1193
|
"automatic keyboard navigation setting": "控制是否只要鍵入即可自動觸發清單和樹狀結構中的鍵盤瀏覽。若設為 `false`,只有在執行 `list.toggleKeyboardNavigation` 命令時,才會觸發鍵盤瀏覽,您可為其指定鍵盤快速鍵。",
|
|
1160
1194
|
"expand mode": "控制當按下資料夾名稱時,樹狀目錄資料夾的展開方式。請注意,若不適用,某些樹狀目錄和清單可能會選擇忽略此設定。",
|
|
1161
1195
|
"horizontalScrolling setting": "控制在工作台中,清單與樹狀結構是否支援水平捲動。警告: 開啟此設定將會影響效能。",
|
|
@@ -0,0 +1,228 @@
|
|
|
1
|
+
{
|
|
2
|
+
"base": "vs-dark",
|
|
3
|
+
"inherit": true,
|
|
4
|
+
"rules": [
|
|
5
|
+
{
|
|
6
|
+
"foreground": "666c68",
|
|
7
|
+
"background": "151c19",
|
|
8
|
+
"token": "comment"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"foreground": "c23b00",
|
|
12
|
+
"token": "storage"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"foreground": "c23b00",
|
|
16
|
+
"token": "support.type"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"foreground": "ffffff",
|
|
20
|
+
"background": "151c19",
|
|
21
|
+
"token": "string.unquoted.embedded"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"foreground": "ffffff",
|
|
25
|
+
"background": "151c19",
|
|
26
|
+
"token": "text source"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"foreground": "ffffff",
|
|
30
|
+
"background": "151c19",
|
|
31
|
+
"token": "string.unquoted"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"foreground": "e9470000",
|
|
35
|
+
"background": "1a0700",
|
|
36
|
+
"token": "constant.character.escaped"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"foreground": "e9470000",
|
|
40
|
+
"background": "1a0700",
|
|
41
|
+
"token": "string source - string.unquoted.embedded"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"foreground": "e9470000",
|
|
45
|
+
"background": "1a0700",
|
|
46
|
+
"token": "string string source"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"foreground": "c23800",
|
|
50
|
+
"background": "1a0700",
|
|
51
|
+
"token": "string - string source"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"foreground": "c23800",
|
|
55
|
+
"background": "1a0700",
|
|
56
|
+
"token": "string source string"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"foreground": "c23800",
|
|
60
|
+
"background": "1a0700",
|
|
61
|
+
"token": "meta.scope.heredoc"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"foreground": "e98800",
|
|
65
|
+
"token": "constant.numeric"
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"foreground": "648bd2",
|
|
69
|
+
"token": "variable.language"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"foreground": "648bd2",
|
|
73
|
+
"token": "variable.other"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"foreground": "e98800",
|
|
77
|
+
"token": "constant"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"foreground": "a8b3ab",
|
|
81
|
+
"background": "161d1a",
|
|
82
|
+
"token": "other.preprocessor"
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"foreground": "a8b3ab",
|
|
86
|
+
"background": "161d1a",
|
|
87
|
+
"token": "entity.name.preprocessor"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"foreground": "a8b3ab",
|
|
91
|
+
"token": "entity.name.function"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"foreground": "a8b3ab",
|
|
95
|
+
"token": "keyword.operator"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"foreground": "a8b3ab",
|
|
99
|
+
"token": "keyword.other.name-of-parameter"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"foreground": "9a2f00",
|
|
103
|
+
"token": "entity.name.class"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"foreground": "648bd2",
|
|
107
|
+
"token": "variable.parameter"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"foreground": "666c68",
|
|
111
|
+
"token": "storage.type.method"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"foreground": "a39e64",
|
|
115
|
+
"token": "keyword"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"foreground": "a39e64",
|
|
119
|
+
"token": "storage.type.function.php"
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"foreground": "ffffff",
|
|
123
|
+
"background": "990000ad",
|
|
124
|
+
"token": "invalid"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"foreground": "000000",
|
|
128
|
+
"background": "ffd0d0",
|
|
129
|
+
"token": "invalid.trailing-whitespace"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"foreground": "588e60",
|
|
133
|
+
"token": "support.function"
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
"foreground": "5778b6",
|
|
137
|
+
"token": "support.class"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"foreground": "5778b6",
|
|
141
|
+
"token": "support.type"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"foreground": "5778b6",
|
|
145
|
+
"token": "entity.name"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"foreground": "c87500",
|
|
149
|
+
"token": "support.constant"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"foreground": "5879b7",
|
|
153
|
+
"token": "support.other.variable"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"foreground": "68685b",
|
|
157
|
+
"token": "declaration.xml-processing"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"foreground": "888888",
|
|
161
|
+
"token": "declaration.doctype"
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
"foreground": "888888",
|
|
165
|
+
"token": "declaration.doctype.DTD"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"foreground": "a65eff",
|
|
169
|
+
"token": "declaration.tag"
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"foreground": "a65eff",
|
|
173
|
+
"token": "entity.name.tag"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"foreground": "909993",
|
|
177
|
+
"token": "entity.other.attribute-name"
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"foreground": "90999380",
|
|
181
|
+
"token": "punctuation"
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"foreground": "7642b7",
|
|
185
|
+
"token": "entity.other.inherited-class"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"foreground": "ffffff",
|
|
189
|
+
"background": "00000059",
|
|
190
|
+
"token": "meta.scope.changed-files.svn"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"foreground": "ffffff",
|
|
194
|
+
"background": "00000059",
|
|
195
|
+
"token": "markup.inserted.svn"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"foreground": "ffffff",
|
|
199
|
+
"background": "00000059",
|
|
200
|
+
"token": "markup.changed.svn"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"foreground": "ffffff",
|
|
204
|
+
"background": "00000059",
|
|
205
|
+
"token": "markup.deleted.svn"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"background": "78807b0a",
|
|
209
|
+
"token": "meta.section"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"background": "78807b0a",
|
|
213
|
+
"token": "meta.section meta.section"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"background": "78807b0a",
|
|
217
|
+
"token": "meta.section meta.section meta.section"
|
|
218
|
+
}
|
|
219
|
+
],
|
|
220
|
+
"colors": {
|
|
221
|
+
"editor.foreground": "#FFFFFF",
|
|
222
|
+
"editor.background": "#222C28",
|
|
223
|
+
"editor.selectionBackground": "#91999466",
|
|
224
|
+
"editor.lineHighlightBackground": "#0C0D0C40",
|
|
225
|
+
"editorCursor.foreground": "#FFFFFF",
|
|
226
|
+
"editorWhitespace.foreground": "#666C6880"
|
|
227
|
+
}
|
|
228
|
+
}
|