@heal-dev/heal-playwright-tracer 1.0.0 → 1.0.8

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.
Files changed (704) hide show
  1. package/README.md +94 -116
  2. package/dist/application/babel-playwright-tracer-plugin/index.js +16 -2
  3. package/dist/application/commander-cli-adapter/commander-cli-adapter.d.ts +24 -0
  4. package/dist/application/commander-cli-adapter/commander-cli-adapter.js +133 -0
  5. package/dist/application/heal-config/index.d.ts +1 -1
  6. package/dist/application/heal-config/registry.js +2 -1
  7. package/dist/application/heal-config/types.d.ts +187 -6
  8. package/dist/application/playwright-fixture/index.js +247 -48
  9. package/dist/application/playwright-fixture/wire-all-pages.d.ts +37 -0
  10. package/dist/application/playwright-fixture/wire-all-pages.js +71 -0
  11. package/dist/application/trace-event-recorder-runtime/index.d.ts +5 -0
  12. package/dist/application/trace-event-recorder-runtime/index.js +11 -1
  13. package/dist/bin/heal-tracer.d.ts +7 -0
  14. package/dist/bin/heal-tracer.js +16 -0
  15. package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.d.ts +11 -0
  16. package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.js +21 -0
  17. package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.d.ts +10 -0
  18. package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.js +17 -0
  19. package/dist/domain/persistence/execution-history-schema.d.ts +112 -0
  20. package/dist/domain/persistence/execution-history-schema.js +10 -0
  21. package/dist/domain/persistence/index.d.ts +7 -0
  22. package/dist/domain/persistence/index.js +10 -0
  23. package/dist/domain/persistence/test-status.d.ts +6 -0
  24. package/dist/domain/persistence/test-status.js +7 -0
  25. package/dist/domain/trace-event-recorder/model/console-trace-schema.d.ts +36 -0
  26. package/dist/domain/trace-event-recorder/model/console-trace-schema.js +7 -0
  27. package/dist/domain/trace-event-recorder/model/global-names.d.ts +1 -0
  28. package/dist/domain/trace-event-recorder/model/global-names.js +9 -1
  29. package/dist/domain/trace-event-recorder/model/network-trace-schema.d.ts +105 -0
  30. package/dist/domain/trace-event-recorder/model/network-trace-schema.js +7 -0
  31. package/dist/domain/trace-event-recorder/model/statement-trace-schema.d.ts +68 -2
  32. package/dist/domain/trace-event-recorder/model/statement-trace-schema.js +1 -1
  33. package/dist/domain/trace-event-recorder/model/trace-schema.d.ts +1 -0
  34. package/dist/domain/trace-event-recorder/service/projectors/statement-projector.d.ts +10 -1
  35. package/dist/domain/trace-event-recorder/service/projectors/statement-projector.js +39 -3
  36. package/dist/domain/trace-event-recorder/service/serializers/error-serializer.js +28 -10
  37. package/dist/domain/trace-event-recorder/service/serializers/index.d.ts +7 -0
  38. package/dist/domain/trace-event-recorder/service/serializers/index.js +13 -0
  39. package/dist/domain/trace-event-recorder/service/trace-event-recorder.d.ts +25 -0
  40. package/dist/domain/trace-event-recorder/service/trace-event-recorder.js +33 -0
  41. package/dist/index.d.ts +1 -1
  42. package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.d.ts +20 -0
  43. package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.js +24 -0
  44. package/dist/infrastructure/artifact-summary-printer/index.d.ts +7 -0
  45. package/dist/infrastructure/artifact-summary-printer/index.js +10 -0
  46. package/dist/infrastructure/heal-reporter/crash-error-classifier.d.ts +13 -0
  47. package/dist/infrastructure/heal-reporter/crash-error-classifier.js +65 -0
  48. package/dist/infrastructure/heal-reporter/failing-statement-finder.d.ts +14 -0
  49. package/dist/infrastructure/heal-reporter/failing-statement-finder.js +118 -0
  50. package/dist/infrastructure/heal-reporter/heal-tracer-reporter.d.ts +134 -0
  51. package/dist/infrastructure/heal-reporter/heal-tracer-reporter.js +537 -0
  52. package/dist/infrastructure/heal-reporter/index.d.ts +14 -0
  53. package/dist/infrastructure/heal-reporter/index.js +23 -0
  54. package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.d.ts +8 -0
  55. package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.js +75 -0
  56. package/dist/infrastructure/heal-traces-layout/execution-id-resolver.d.ts +14 -0
  57. package/dist/infrastructure/heal-traces-layout/execution-id-resolver.js +52 -0
  58. package/dist/infrastructure/heal-traces-layout/heal-traces-layout.d.ts +37 -0
  59. package/dist/infrastructure/heal-traces-layout/heal-traces-layout.js +116 -0
  60. package/dist/infrastructure/heal-traces-layout/index.d.ts +7 -0
  61. package/dist/infrastructure/heal-traces-layout/index.js +14 -0
  62. package/dist/infrastructure/local-viewer-adapter/discover-traces.d.ts +70 -0
  63. package/dist/infrastructure/local-viewer-adapter/discover-traces.js +280 -0
  64. package/dist/infrastructure/local-viewer-adapter/local-viewer-server.d.ts +44 -0
  65. package/dist/infrastructure/local-viewer-adapter/local-viewer-server.js +398 -0
  66. package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.d.ts +25 -0
  67. package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.js +74 -0
  68. package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.d.ts +40 -0
  69. package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.js +243 -0
  70. package/dist/infrastructure/playwright-console-capture-adapter/index.d.ts +7 -0
  71. package/dist/infrastructure/playwright-console-capture-adapter/index.js +20 -0
  72. package/dist/infrastructure/playwright-locator-screenshot-adapter/assertion-wrapper.js +22 -9
  73. package/dist/infrastructure/playwright-locator-screenshot-adapter/index.d.ts +1 -1
  74. package/dist/infrastructure/playwright-locator-screenshot-adapter/index.js +2 -2
  75. package/dist/infrastructure/playwright-locator-screenshot-adapter/locator-patch.js +19 -7
  76. package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.d.ts +2 -2
  77. package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.js +22 -9
  78. package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.d.ts +14 -3
  79. package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.js +94 -25
  80. package/dist/infrastructure/playwright-network-capture-adapter/body-preview.d.ts +43 -0
  81. package/dist/infrastructure/playwright-network-capture-adapter/body-preview.js +107 -0
  82. package/dist/infrastructure/playwright-network-capture-adapter/index.d.ts +10 -0
  83. package/dist/infrastructure/playwright-network-capture-adapter/index.js +27 -0
  84. package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.d.ts +55 -0
  85. package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.js +630 -0
  86. package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.d.ts +54 -0
  87. package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.js +96 -0
  88. package/dist/infrastructure/playwright-network-capture-adapter/redaction.d.ts +14 -0
  89. package/dist/infrastructure/playwright-network-capture-adapter/redaction.js +44 -0
  90. package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.d.ts +6 -1
  91. package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.js +5 -1
  92. package/dist/infrastructure/stdout-capture-adapter/stdout-capture-session.js +1 -1
  93. package/dist/util/logger.d.ts +17 -0
  94. package/dist/util/logger.js +60 -0
  95. package/dist/util/with-timeout.d.ts +6 -0
  96. package/dist/util/with-timeout.js +33 -0
  97. package/package.json +20 -3
  98. package/tracer-viewer-bundle/assets/abap-BdImnpbu.js +13 -0
  99. package/tracer-viewer-bundle/assets/abap-BdImnpbu.js.map +1 -0
  100. package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js +13 -0
  101. package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js.map +1 -0
  102. package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js +13 -0
  103. package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js.map +1 -0
  104. package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js +12 -0
  105. package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js.map +1 -0
  106. package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js +41 -0
  107. package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js.map +1 -0
  108. package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js +30 -0
  109. package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js.map +1 -0
  110. package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js +13 -0
  111. package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js.map +1 -0
  112. package/tracer-viewer-bundle/assets/apex-D8_7TLub.js +13 -0
  113. package/tracer-viewer-bundle/assets/apex-D8_7TLub.js.map +1 -0
  114. package/tracer-viewer-bundle/assets/apl-CORt7UWP.js +19 -0
  115. package/tracer-viewer-bundle/assets/apl-CORt7UWP.js.map +1 -0
  116. package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js +13 -0
  117. package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js.map +1 -0
  118. package/tracer-viewer-bundle/assets/ara-BRHolxvo.js +13 -0
  119. package/tracer-viewer-bundle/assets/ara-BRHolxvo.js.map +1 -0
  120. package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js +13 -0
  121. package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js.map +1 -0
  122. package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js +13 -0
  123. package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js.map +1 -0
  124. package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js +19 -0
  125. package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js.map +1 -0
  126. package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js +12 -0
  127. package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js.map +1 -0
  128. package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js +13 -0
  129. package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js.map +1 -0
  130. package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js +12 -0
  131. package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js.map +1 -0
  132. package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js +12 -0
  133. package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js.map +1 -0
  134. package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js +12 -0
  135. package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js.map +1 -0
  136. package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js +13 -0
  137. package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js.map +1 -0
  138. package/tracer-viewer-bundle/assets/bat-BkioyH1T.js +13 -0
  139. package/tracer-viewer-bundle/assets/bat-BkioyH1T.js.map +1 -0
  140. package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js +13 -0
  141. package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js.map +1 -0
  142. package/tracer-viewer-bundle/assets/berry-uYugtg8r.js +13 -0
  143. package/tracer-viewer-bundle/assets/berry-uYugtg8r.js.map +1 -0
  144. package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js +13 -0
  145. package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js.map +1 -0
  146. package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js +13 -0
  147. package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js.map +1 -0
  148. package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js +13 -0
  149. package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js.map +1 -0
  150. package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js +21 -0
  151. package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js.map +1 -0
  152. package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js +14 -0
  153. package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js.map +1 -0
  154. package/tracer-viewer-bundle/assets/c-BIGW1oBm.js +13 -0
  155. package/tracer-viewer-bundle/assets/c-BIGW1oBm.js.map +1 -0
  156. package/tracer-viewer-bundle/assets/c3-eo99z4R2.js +13 -0
  157. package/tracer-viewer-bundle/assets/c3-eo99z4R2.js.map +1 -0
  158. package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js +13 -0
  159. package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js.map +1 -0
  160. package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js +14 -0
  161. package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js.map +1 -0
  162. package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js +12 -0
  163. package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js.map +1 -0
  164. package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js +12 -0
  165. package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js.map +1 -0
  166. package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js +12 -0
  167. package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js.map +1 -0
  168. package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js +12 -0
  169. package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js.map +1 -0
  170. package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js +13 -0
  171. package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js.map +1 -0
  172. package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js +13 -0
  173. package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js.map +1 -0
  174. package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js +13 -0
  175. package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js.map +1 -0
  176. package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js +17 -0
  177. package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js.map +1 -0
  178. package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js +13 -0
  179. package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js.map +1 -0
  180. package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js +13 -0
  181. package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js.map +1 -0
  182. package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js +14 -0
  183. package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js.map +1 -0
  184. package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js +13 -0
  185. package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js.map +1 -0
  186. package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js +13 -0
  187. package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js.map +1 -0
  188. package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js +23 -0
  189. package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js.map +1 -0
  190. package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js +19 -0
  191. package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js.map +1 -0
  192. package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js +13 -0
  193. package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js.map +1 -0
  194. package/tracer-viewer-bundle/assets/css-CLj8gQPS.js +13 -0
  195. package/tracer-viewer-bundle/assets/css-CLj8gQPS.js.map +1 -0
  196. package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js +13 -0
  197. package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js.map +1 -0
  198. package/tracer-viewer-bundle/assets/cue-D82EKSYY.js +13 -0
  199. package/tracer-viewer-bundle/assets/cue-D82EKSYY.js.map +1 -0
  200. package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js +13 -0
  201. package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js.map +1 -0
  202. package/tracer-viewer-bundle/assets/d-85-TOEBH.js +13 -0
  203. package/tracer-viewer-bundle/assets/d-85-TOEBH.js.map +1 -0
  204. package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js +12 -0
  205. package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js.map +1 -0
  206. package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js +13 -0
  207. package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js.map +1 -0
  208. package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js +13 -0
  209. package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js.map +1 -0
  210. package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js +13 -0
  211. package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js.map +1 -0
  212. package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js +13 -0
  213. package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js.map +1 -0
  214. package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js +13 -0
  215. package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js.map +1 -0
  216. package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js +13 -0
  217. package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js.map +1 -0
  218. package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js +12 -0
  219. package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js.map +1 -0
  220. package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js +12 -0
  221. package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js.map +1 -0
  222. package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js +13 -0
  223. package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js.map +1 -0
  224. package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js +18 -0
  225. package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js.map +1 -0
  226. package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js +16 -0
  227. package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js.map +1 -0
  228. package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js +15 -0
  229. package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js.map +1 -0
  230. package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js +13 -0
  231. package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js.map +1 -0
  232. package/tracer-viewer-bundle/assets/erb-BYCe7drp.js +32 -0
  233. package/tracer-viewer-bundle/assets/erb-BYCe7drp.js.map +1 -0
  234. package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js +14 -0
  235. package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js.map +1 -0
  236. package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js +12 -0
  237. package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js.map +1 -0
  238. package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js +12 -0
  239. package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js.map +1 -0
  240. package/tracer-viewer-bundle/assets/favicon-DRSNNJwn.svg +3 -0
  241. package/tracer-viewer-bundle/assets/fennel-BYunw83y.js +13 -0
  242. package/tracer-viewer-bundle/assets/fennel-BYunw83y.js.map +1 -0
  243. package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js +13 -0
  244. package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js.map +1 -0
  245. package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js +13 -0
  246. package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js.map +1 -0
  247. package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js +14 -0
  248. package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js.map +1 -0
  249. package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js +13 -0
  250. package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js.map +1 -0
  251. package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js +14 -0
  252. package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js.map +1 -0
  253. package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js +15 -0
  254. package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js.map +1 -0
  255. package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js +13 -0
  256. package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js.map +1 -0
  257. package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js +13 -0
  258. package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js.map +1 -0
  259. package/tracer-viewer-bundle/assets/genie-D0YGMca9.js +13 -0
  260. package/tracer-viewer-bundle/assets/genie-D0YGMca9.js.map +1 -0
  261. package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js +13 -0
  262. package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js.map +1 -0
  263. package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js +14 -0
  264. package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js.map +1 -0
  265. package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js +14 -0
  266. package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js.map +1 -0
  267. package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js +12 -0
  268. package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js.map +1 -0
  269. package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js +12 -0
  270. package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js.map +1 -0
  271. package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js +12 -0
  272. package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js.map +1 -0
  273. package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js +12 -0
  274. package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js.map +1 -0
  275. package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js +12 -0
  276. package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js.map +1 -0
  277. package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js +12 -0
  278. package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js.map +1 -0
  279. package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js +12 -0
  280. package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js.map +1 -0
  281. package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js +13 -0
  282. package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js.map +1 -0
  283. package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js +17 -0
  284. package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js.map +1 -0
  285. package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js +17 -0
  286. package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js.map +1 -0
  287. package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js +14 -0
  288. package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js.map +1 -0
  289. package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js +13 -0
  290. package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js.map +1 -0
  291. package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js +13 -0
  292. package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js.map +1 -0
  293. package/tracer-viewer-bundle/assets/go-C27-OAKa.js +13 -0
  294. package/tracer-viewer-bundle/assets/go-C27-OAKa.js.map +1 -0
  295. package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js +17 -0
  296. package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js.map +1 -0
  297. package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js +13 -0
  298. package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js.map +1 -0
  299. package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js +12 -0
  300. package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js.map +1 -0
  301. package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js +12 -0
  302. package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js.map +1 -0
  303. package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js +12 -0
  304. package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js.map +1 -0
  305. package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js +12 -0
  306. package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js.map +1 -0
  307. package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js +12 -0
  308. package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js.map +1 -0
  309. package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js +12 -0
  310. package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js.map +1 -0
  311. package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js +17 -0
  312. package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js.map +1 -0
  313. package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js +15 -0
  314. package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js.map +1 -0
  315. package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js +17 -0
  316. package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js.map +1 -0
  317. package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js +13 -0
  318. package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js.map +1 -0
  319. package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js +13 -0
  320. package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js.map +1 -0
  321. package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js +13 -0
  322. package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js.map +1 -0
  323. package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js +13 -0
  324. package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js.map +1 -0
  325. package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js +13 -0
  326. package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js.map +1 -0
  327. package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js +12 -0
  328. package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js.map +1 -0
  329. package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js +12 -0
  330. package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js.map +1 -0
  331. package/tracer-viewer-bundle/assets/houston-DnULxvSX.js +12 -0
  332. package/tracer-viewer-bundle/assets/houston-DnULxvSX.js.map +1 -0
  333. package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js +16 -0
  334. package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js.map +1 -0
  335. package/tracer-viewer-bundle/assets/html-pp8916En.js +15 -0
  336. package/tracer-viewer-bundle/assets/html-pp8916En.js.map +1 -0
  337. package/tracer-viewer-bundle/assets/http-jrhK8wxY.js +22 -0
  338. package/tracer-viewer-bundle/assets/http-jrhK8wxY.js.map +1 -0
  339. package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js +21 -0
  340. package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js.map +1 -0
  341. package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js +14 -0
  342. package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js.map +1 -0
  343. package/tracer-viewer-bundle/assets/hy-DFXneXwc.js +13 -0
  344. package/tracer-viewer-bundle/assets/hy-DFXneXwc.js.map +1 -0
  345. package/tracer-viewer-bundle/assets/imba-DGztddWO.js +13 -0
  346. package/tracer-viewer-bundle/assets/imba-DGztddWO.js.map +1 -0
  347. package/tracer-viewer-bundle/assets/index-CIRSNBm6.css +4792 -0
  348. package/tracer-viewer-bundle/assets/index-DS0dKIBi.js +36912 -0
  349. package/tracer-viewer-bundle/assets/index-DS0dKIBi.js.map +1 -0
  350. package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js +13 -0
  351. package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js.map +1 -0
  352. package/tracer-viewer-bundle/assets/java-CylS5w8V.js +13 -0
  353. package/tracer-viewer-bundle/assets/java-CylS5w8V.js.map +1 -0
  354. package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js +13 -0
  355. package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js.map +1 -0
  356. package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js +22 -0
  357. package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js.map +1 -0
  358. package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js +14 -0
  359. package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js.map +1 -0
  360. package/tracer-viewer-bundle/assets/json-Cp-IABpG.js +13 -0
  361. package/tracer-viewer-bundle/assets/json-Cp-IABpG.js.map +1 -0
  362. package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js +13 -0
  363. package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js.map +1 -0
  364. package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js +13 -0
  365. package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js.map +1 -0
  366. package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js +13 -0
  367. package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js.map +1 -0
  368. package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js +13 -0
  369. package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js.map +1 -0
  370. package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js +13 -0
  371. package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js.map +1 -0
  372. package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js +13 -0
  373. package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js.map +1 -0
  374. package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js +21 -0
  375. package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js.map +1 -0
  376. package/tracer-viewer-bundle/assets/just-VxiPbLrw.js +34 -0
  377. package/tracer-viewer-bundle/assets/just-VxiPbLrw.js.map +1 -0
  378. package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js +12 -0
  379. package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js.map +1 -0
  380. package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js +12 -0
  381. package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js.map +1 -0
  382. package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js +12 -0
  383. package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js.map +1 -0
  384. package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js +13 -0
  385. package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js.map +1 -0
  386. package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js +13 -0
  387. package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js.map +1 -0
  388. package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js +13 -0
  389. package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js.map +1 -0
  390. package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js +12 -0
  391. package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js.map +1 -0
  392. package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js +15 -0
  393. package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js.map +1 -0
  394. package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js +13 -0
  395. package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js.map +1 -0
  396. package/tracer-viewer-bundle/assets/less-B1dDrJ26.js +13 -0
  397. package/tracer-viewer-bundle/assets/less-B1dDrJ26.js.map +1 -0
  398. package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js +12 -0
  399. package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js.map +1 -0
  400. package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js +17 -0
  401. package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js.map +1 -0
  402. package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js +13 -0
  403. package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js.map +1 -0
  404. package/tracer-viewer-bundle/assets/log-2UxHyX5q.js +13 -0
  405. package/tracer-viewer-bundle/assets/log-2UxHyX5q.js.map +1 -0
  406. package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js +13 -0
  407. package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js.map +1 -0
  408. package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js +14 -0
  409. package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js.map +1 -0
  410. package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js +13 -0
  411. package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js.map +1 -0
  412. package/tracer-viewer-bundle/assets/make-CHLpvVh8.js +13 -0
  413. package/tracer-viewer-bundle/assets/make-CHLpvVh8.js.map +1 -0
  414. package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js +13 -0
  415. package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js.map +1 -0
  416. package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js +17 -0
  417. package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js.map +1 -0
  418. package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js +12 -0
  419. package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js.map +1 -0
  420. package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js +12 -0
  421. package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js.map +1 -0
  422. package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js +12 -0
  423. package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js.map +1 -0
  424. package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js +12 -0
  425. package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js.map +1 -0
  426. package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js +12 -0
  427. package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js.map +1 -0
  428. package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js +13 -0
  429. package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js.map +1 -0
  430. package/tracer-viewer-bundle/assets/mdc-DTYItulj.js +19 -0
  431. package/tracer-viewer-bundle/assets/mdc-DTYItulj.js.map +1 -0
  432. package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js +13 -0
  433. package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js.map +1 -0
  434. package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js +13 -0
  435. package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js.map +1 -0
  436. package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js +12 -0
  437. package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js.map +1 -0
  438. package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js +12 -0
  439. package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js.map +1 -0
  440. package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js +13 -0
  441. package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js.map +1 -0
  442. package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js +13 -0
  443. package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js.map +1 -0
  444. package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js +12 -0
  445. package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js.map +1 -0
  446. package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js +13 -0
  447. package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js.map +1 -0
  448. package/tracer-viewer-bundle/assets/move-IF9eRakj.js +13 -0
  449. package/tracer-viewer-bundle/assets/move-IF9eRakj.js.map +1 -0
  450. package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js +13 -0
  451. package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js.map +1 -0
  452. package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js +14 -0
  453. package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js.map +1 -0
  454. package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js +13 -0
  455. package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js.map +1 -0
  456. package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js +15 -0
  457. package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js.map +1 -0
  458. package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js +12 -0
  459. package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js.map +1 -0
  460. package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js +12 -0
  461. package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js.map +1 -0
  462. package/tracer-viewer-bundle/assets/nim-BIad80T-.js +21 -0
  463. package/tracer-viewer-bundle/assets/nim-BIad80T-.js.map +1 -0
  464. package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js +19 -0
  465. package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js.map +1 -0
  466. package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js +12 -0
  467. package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js.map +1 -0
  468. package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js +13 -0
  469. package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js.map +1 -0
  470. package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js +13 -0
  471. package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js.map +1 -0
  472. package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js +13 -0
  473. package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js.map +1 -0
  474. package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js +13 -0
  475. package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js.map +1 -0
  476. package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js +13 -0
  477. package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js.map +1 -0
  478. package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js +12 -0
  479. package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js.map +1 -0
  480. package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js +12 -0
  481. package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js.map +1 -0
  482. package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js +13 -0
  483. package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js.map +1 -0
  484. package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js +13 -0
  485. package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js.map +1 -0
  486. package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js +19 -0
  487. package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js.map +1 -0
  488. package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js +20 -0
  489. package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js.map +1 -0
  490. package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js +13 -0
  491. package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js.map +1 -0
  492. package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js +12 -0
  493. package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js.map +1 -0
  494. package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js +13 -0
  495. package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js.map +1 -0
  496. package/tracer-viewer-bundle/assets/po-BTJTHyun.js +13 -0
  497. package/tracer-viewer-bundle/assets/po-BTJTHyun.js.map +1 -0
  498. package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js +12 -0
  499. package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js.map +1 -0
  500. package/tracer-viewer-bundle/assets/polar-C0HS_06l.js +13 -0
  501. package/tracer-viewer-bundle/assets/polar-C0HS_06l.js.map +1 -0
  502. package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js +13 -0
  503. package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js.map +1 -0
  504. package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js +13 -0
  505. package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js.map +1 -0
  506. package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js +13 -0
  507. package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js.map +1 -0
  508. package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js +13 -0
  509. package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js.map +1 -0
  510. package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js +13 -0
  511. package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js.map +1 -0
  512. package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js +13 -0
  513. package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js.map +1 -0
  514. package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js +16 -0
  515. package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js.map +1 -0
  516. package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js +13 -0
  517. package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js.map +1 -0
  518. package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js +13 -0
  519. package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js.map +1 -0
  520. package/tracer-viewer-bundle/assets/python-B6aJPvgy.js +13 -0
  521. package/tracer-viewer-bundle/assets/python-B6aJPvgy.js.map +1 -0
  522. package/tracer-viewer-bundle/assets/qml-3beO22l8.js +14 -0
  523. package/tracer-viewer-bundle/assets/qml-3beO22l8.js.map +1 -0
  524. package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js +13 -0
  525. package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js.map +1 -0
  526. package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js +13 -0
  527. package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js.map +1 -0
  528. package/tracer-viewer-bundle/assets/r-Dspwwk_N.js +13 -0
  529. package/tracer-viewer-bundle/assets/r-Dspwwk_N.js.map +1 -0
  530. package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js +13 -0
  531. package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js.map +1 -0
  532. package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js +13 -0
  533. package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js.map +1 -0
  534. package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js +17 -0
  535. package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js.map +1 -0
  536. package/tracer-viewer-bundle/assets/red-bN70gL4F.js +12 -0
  537. package/tracer-viewer-bundle/assets/red-bN70gL4F.js.map +1 -0
  538. package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js +13 -0
  539. package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js.map +1 -0
  540. package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js +13 -0
  541. package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js.map +1 -0
  542. package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js +13 -0
  543. package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js.map +1 -0
  544. package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js +13 -0
  545. package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js.map +1 -0
  546. package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js +13 -0
  547. package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js.map +1 -0
  548. package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js +12 -0
  549. package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js.map +1 -0
  550. package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js +12 -0
  551. package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js.map +1 -0
  552. package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js +12 -0
  553. package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js.map +1 -0
  554. package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js +13 -0
  555. package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js.map +1 -0
  556. package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js +35 -0
  557. package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js.map +1 -0
  558. package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js +31 -0
  559. package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js.map +1 -0
  560. package/tracer-viewer-bundle/assets/rust-B1yitclQ.js +13 -0
  561. package/tracer-viewer-bundle/assets/rust-B1yitclQ.js.map +1 -0
  562. package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js +14 -0
  563. package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js.map +1 -0
  564. package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js +13 -0
  565. package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js.map +1 -0
  566. package/tracer-viewer-bundle/assets/scala-C151Ov-r.js +13 -0
  567. package/tracer-viewer-bundle/assets/scala-C151Ov-r.js.map +1 -0
  568. package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js +13 -0
  569. package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js.map +1 -0
  570. package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js +14 -0
  571. package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js.map +1 -0
  572. package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js +13 -0
  573. package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js.map +1 -0
  574. package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js +14 -0
  575. package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js.map +1 -0
  576. package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js +13 -0
  577. package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js.map +1 -0
  578. package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js +14 -0
  579. package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js.map +1 -0
  580. package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js +12 -0
  581. package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js.map +1 -0
  582. package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js +12 -0
  583. package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js.map +1 -0
  584. package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js +13 -0
  585. package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js.map +1 -0
  586. package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js +12 -0
  587. package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js.map +1 -0
  588. package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js +12 -0
  589. package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js.map +1 -0
  590. package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js +12 -0
  591. package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js.map +1 -0
  592. package/tracer-viewer-bundle/assets/solidity-rGO070M0.js +13 -0
  593. package/tracer-viewer-bundle/assets/solidity-rGO070M0.js.map +1 -0
  594. package/tracer-viewer-bundle/assets/soy-8wufbnw4.js +16 -0
  595. package/tracer-viewer-bundle/assets/soy-8wufbnw4.js.map +1 -0
  596. package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js +14 -0
  597. package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js.map +1 -0
  598. package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js +13 -0
  599. package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js.map +1 -0
  600. package/tracer-viewer-bundle/assets/sql-BLtJtn59.js +13 -0
  601. package/tracer-viewer-bundle/assets/sql-BLtJtn59.js.map +1 -0
  602. package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js +13 -0
  603. package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js.map +1 -0
  604. package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js +14 -0
  605. package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js.map +1 -0
  606. package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js +13 -0
  607. package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js.map +1 -0
  608. package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js +14 -0
  609. package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js.map +1 -0
  610. package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js +17 -0
  611. package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js.map +1 -0
  612. package/tracer-viewer-bundle/assets/swift-D82vCrfD.js +13 -0
  613. package/tracer-viewer-bundle/assets/swift-D82vCrfD.js.map +1 -0
  614. package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js +12 -0
  615. package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js.map +1 -0
  616. package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js +13 -0
  617. package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js.map +1 -0
  618. package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js +13 -0
  619. package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js.map +1 -0
  620. package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js +13 -0
  621. package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js.map +1 -0
  622. package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js +13 -0
  623. package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js.map +1 -0
  624. package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js +13 -0
  625. package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js.map +1 -0
  626. package/tracer-viewer-bundle/assets/templ-DhtptRzy.js +16 -0
  627. package/tracer-viewer-bundle/assets/templ-DhtptRzy.js.map +1 -0
  628. package/tracer-viewer-bundle/assets/terraform-BETggiCN.js +13 -0
  629. package/tracer-viewer-bundle/assets/terraform-BETggiCN.js.map +1 -0
  630. package/tracer-viewer-bundle/assets/tex-idrVyKtj.js +14 -0
  631. package/tracer-viewer-bundle/assets/tex-idrVyKtj.js.map +1 -0
  632. package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js +12 -0
  633. package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js.map +1 -0
  634. package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js +13 -0
  635. package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js.map +1 -0
  636. package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js +52 -0
  637. package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js.map +1 -0
  638. package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js +13 -0
  639. package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js.map +1 -0
  640. package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js +13 -0
  641. package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js.map +1 -0
  642. package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js +13 -0
  643. package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js.map +1 -0
  644. package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js +36 -0
  645. package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js.map +1 -0
  646. package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js +13 -0
  647. package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js.map +1 -0
  648. package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js +13 -0
  649. package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js.map +1 -0
  650. package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js +13 -0
  651. package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js.map +1 -0
  652. package/tracer-viewer-bundle/assets/v-BcVCzyr7.js +13 -0
  653. package/tracer-viewer-bundle/assets/v-BcVCzyr7.js.map +1 -0
  654. package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js +13 -0
  655. package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js.map +1 -0
  656. package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js +13 -0
  657. package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js.map +1 -0
  658. package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js +13 -0
  659. package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js.map +1 -0
  660. package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js +12 -0
  661. package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js.map +1 -0
  662. package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js +13 -0
  663. package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js.map +1 -0
  664. package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js +13 -0
  665. package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js.map +1 -0
  666. package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js +12 -0
  667. package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js.map +1 -0
  668. package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js +12 -0
  669. package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js.map +1 -0
  670. package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js +12 -0
  671. package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js.map +1 -0
  672. package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js +43 -0
  673. package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js.map +1 -0
  674. package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js +14 -0
  675. package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js.map +1 -0
  676. package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js +19 -0
  677. package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js.map +1 -0
  678. package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js +13 -0
  679. package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js.map +1 -0
  680. package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js +15 -0
  681. package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js.map +1 -0
  682. package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js +13 -0
  683. package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js.map +1 -0
  684. package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js +13 -0
  685. package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js.map +1 -0
  686. package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js +13 -0
  687. package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js.map +1 -0
  688. package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js +13 -0
  689. package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js.map +1 -0
  690. package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js +13 -0
  691. package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js.map +1 -0
  692. package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js +13 -0
  693. package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js.map +1 -0
  694. package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js +14 -0
  695. package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js.map +1 -0
  696. package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js +15 -0
  697. package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js.map +1 -0
  698. package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js +13 -0
  699. package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js.map +1 -0
  700. package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js +13 -0
  701. package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js.map +1 -0
  702. package/tracer-viewer-bundle/assets/zig-VOosw3JB.js +13 -0
  703. package/tracer-viewer-bundle/assets/zig-VOosw3JB.js.map +1 -0
  704. package/tracer-viewer-bundle/index.html +25 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"everforest-light-C8M2exoo.js","sources":["../../../../node_modules/@shikijs/themes/dist/everforest-light.mjs"],"sourcesContent":["/* Theme: everforest-light */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.activeBorder\\\":\\\"#93b259d0\\\",\\\"activityBar.activeFocusBorder\\\":\\\"#93b259\\\",\\\"activityBar.background\\\":\\\"#fdf6e3\\\",\\\"activityBar.border\\\":\\\"#fdf6e3\\\",\\\"activityBar.dropBackground\\\":\\\"#fdf6e3\\\",\\\"activityBar.foreground\\\":\\\"#5c6a72\\\",\\\"activityBar.inactiveForeground\\\":\\\"#939f91\\\",\\\"activityBarBadge.background\\\":\\\"#93b259\\\",\\\"activityBarBadge.foreground\\\":\\\"#fdf6e3\\\",\\\"badge.background\\\":\\\"#93b259\\\",\\\"badge.foreground\\\":\\\"#fdf6e3\\\",\\\"breadcrumb.activeSelectionForeground\\\":\\\"#5c6a72\\\",\\\"breadcrumb.focusForeground\\\":\\\"#5c6a72\\\",\\\"breadcrumb.foreground\\\":\\\"#939f91\\\",\\\"button.background\\\":\\\"#93b259\\\",\\\"button.foreground\\\":\\\"#fdf6e3\\\",\\\"button.hoverBackground\\\":\\\"#93b259d0\\\",\\\"button.secondaryBackground\\\":\\\"#efebd4\\\",\\\"button.secondaryForeground\\\":\\\"#5c6a72\\\",\\\"button.secondaryHoverBackground\\\":\\\"#e6e2cc\\\",\\\"charts.blue\\\":\\\"#3a94c5\\\",\\\"charts.foreground\\\":\\\"#5c6a72\\\",\\\"charts.green\\\":\\\"#8da101\\\",\\\"charts.orange\\\":\\\"#f57d26\\\",\\\"charts.purple\\\":\\\"#df69ba\\\",\\\"charts.red\\\":\\\"#f85552\\\",\\\"charts.yellow\\\":\\\"#dfa000\\\",\\\"checkbox.background\\\":\\\"#fdf6e3\\\",\\\"checkbox.border\\\":\\\"#e0dcc7\\\",\\\"checkbox.foreground\\\":\\\"#f57d26\\\",\\\"debugConsole.errorForeground\\\":\\\"#f85552\\\",\\\"debugConsole.infoForeground\\\":\\\"#8da101\\\",\\\"debugConsole.sourceForeground\\\":\\\"#df69ba\\\",\\\"debugConsole.warningForeground\\\":\\\"#dfa000\\\",\\\"debugConsoleInputIcon.foreground\\\":\\\"#35a77c\\\",\\\"debugIcon.breakpointCurrentStackframeForeground\\\":\\\"#3a94c5\\\",\\\"debugIcon.breakpointDisabledForeground\\\":\\\"#f1706f\\\",\\\"debugIcon.breakpointForeground\\\":\\\"#f85552\\\",\\\"debugIcon.breakpointStackframeForeground\\\":\\\"#f85552\\\",\\\"debugIcon.breakpointUnverifiedForeground\\\":\\\"#879686\\\",\\\"debugIcon.continueForeground\\\":\\\"#3a94c5\\\",\\\"debugIcon.disconnectForeground\\\":\\\"#df69ba\\\",\\\"debugIcon.pauseForeground\\\":\\\"#dfa000\\\",\\\"debugIcon.restartForeground\\\":\\\"#35a77c\\\",\\\"debugIcon.startForeground\\\":\\\"#35a77c\\\",\\\"debugIcon.stepBackForeground\\\":\\\"#3a94c5\\\",\\\"debugIcon.stepIntoForeground\\\":\\\"#3a94c5\\\",\\\"debugIcon.stepOutForeground\\\":\\\"#3a94c5\\\",\\\"debugIcon.stepOverForeground\\\":\\\"#3a94c5\\\",\\\"debugIcon.stopForeground\\\":\\\"#f85552\\\",\\\"debugTokenExpression.boolean\\\":\\\"#df69ba\\\",\\\"debugTokenExpression.error\\\":\\\"#f85552\\\",\\\"debugTokenExpression.name\\\":\\\"#3a94c5\\\",\\\"debugTokenExpression.number\\\":\\\"#df69ba\\\",\\\"debugTokenExpression.string\\\":\\\"#dfa000\\\",\\\"debugTokenExpression.value\\\":\\\"#8da101\\\",\\\"debugToolBar.background\\\":\\\"#fdf6e3\\\",\\\"descriptionForeground\\\":\\\"#939f91\\\",\\\"diffEditor.diagonalFill\\\":\\\"#e0dcc7\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#6ec39830\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#f1706f30\\\",\\\"dropdown.background\\\":\\\"#fdf6e3\\\",\\\"dropdown.border\\\":\\\"#e0dcc7\\\",\\\"dropdown.foreground\\\":\\\"#879686\\\",\\\"editor.background\\\":\\\"#fdf6e3\\\",\\\"editor.findMatchBackground\\\":\\\"#f3945940\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#a4bb4a40\\\",\\\"editor.findRangeHighlightBackground\\\":\\\"#e6e2cc50\\\",\\\"editor.foldBackground\\\":\\\"#e0dcc780\\\",\\\"editor.foreground\\\":\\\"#5c6a72\\\",\\\"editor.hoverHighlightBackground\\\":\\\"#e6e2cc90\\\",\\\"editor.inactiveSelectionBackground\\\":\\\"#e6e2cc50\\\",\\\"editor.lineHighlightBackground\\\":\\\"#efebd470\\\",\\\"editor.lineHighlightBorder\\\":\\\"#e0dcc700\\\",\\\"editor.rangeHighlightBackground\\\":\\\"#efebd480\\\",\\\"editor.selectionBackground\\\":\\\"#e6e2cca0\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#e6e2cc50\\\",\\\"editor.snippetFinalTabstopHighlightBackground\\\":\\\"#a4bb4a40\\\",\\\"editor.snippetFinalTabstopHighlightBorder\\\":\\\"#fdf6e3\\\",\\\"editor.snippetTabstopHighlightBackground\\\":\\\"#efebd4\\\",\\\"editor.symbolHighlightBackground\\\":\\\"#6cb3c640\\\",\\\"editor.wordHighlightBackground\\\":\\\"#e6e2cc48\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#e6e2cc90\\\",\\\"editorBracketHighlight.foreground1\\\":\\\"#f85552\\\",\\\"editorBracketHighlight.foreground2\\\":\\\"#dfa000\\\",\\\"editorBracketHighlight.foreground3\\\":\\\"#8da101\\\",\\\"editorBracketHighlight.foreground4\\\":\\\"#3a94c5\\\",\\\"editorBracketHighlight.foreground5\\\":\\\"#f57d26\\\",\\\"editorBracketHighlight.foreground6\\\":\\\"#df69ba\\\",\\\"editorBracketHighlight.unexpectedBracket.foreground\\\":\\\"#939f91\\\",\\\"editorBracketMatch.background\\\":\\\"#e0dcc7\\\",\\\"editorBracketMatch.border\\\":\\\"#fdf6e300\\\",\\\"editorCodeLens.foreground\\\":\\\"#a4ad9ea0\\\",\\\"editorCursor.foreground\\\":\\\"#5c6a72\\\",\\\"editorError.background\\\":\\\"#f1706f00\\\",\\\"editorError.foreground\\\":\\\"#f1706f\\\",\\\"editorGhostText.background\\\":\\\"#fdf6e300\\\",\\\"editorGhostText.foreground\\\":\\\"#a4ad9ea0\\\",\\\"editorGroup.border\\\":\\\"#efebd4\\\",\\\"editorGroup.dropBackground\\\":\\\"#e0dcc760\\\",\\\"editorGroupHeader.noTabsBackground\\\":\\\"#fdf6e3\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#fdf6e3\\\",\\\"editorGutter.addedBackground\\\":\\\"#a4bb4aa0\\\",\\\"editorGutter.background\\\":\\\"#fdf6e300\\\",\\\"editorGutter.commentRangeForeground\\\":\\\"#a4ad9e\\\",\\\"editorGutter.deletedBackground\\\":\\\"#f1706fa0\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#6cb3c6a0\\\",\\\"editorHint.foreground\\\":\\\"#e092be\\\",\\\"editorHoverWidget.background\\\":\\\"#f4f0d9\\\",\\\"editorHoverWidget.border\\\":\\\"#e6e2cc\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#87968650\\\",\\\"editorIndentGuide.background\\\":\\\"#87968620\\\",\\\"editorInfo.background\\\":\\\"#6cb3c600\\\",\\\"editorInfo.foreground\\\":\\\"#6cb3c6\\\",\\\"editorInlayHint.background\\\":\\\"#fdf6e300\\\",\\\"editorInlayHint.foreground\\\":\\\"#a4ad9ea0\\\",\\\"editorInlayHint.parameterBackground\\\":\\\"#fdf6e300\\\",\\\"editorInlayHint.parameterForeground\\\":\\\"#a4ad9ea0\\\",\\\"editorInlayHint.typeBackground\\\":\\\"#fdf6e300\\\",\\\"editorInlayHint.typeForeground\\\":\\\"#a4ad9ea0\\\",\\\"editorLightBulb.foreground\\\":\\\"#dfa000\\\",\\\"editorLightBulbAutoFix.foreground\\\":\\\"#35a77c\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#879686e0\\\",\\\"editorLineNumber.foreground\\\":\\\"#a4ad9ea0\\\",\\\"editorLink.activeForeground\\\":\\\"#8da101\\\",\\\"editorMarkerNavigation.background\\\":\\\"#f4f0d9\\\",\\\"editorMarkerNavigationError.background\\\":\\\"#f1706f80\\\",\\\"editorMarkerNavigationInfo.background\\\":\\\"#6cb3c680\\\",\\\"editorMarkerNavigationWarning.background\\\":\\\"#e4b64980\\\",\\\"editorOverviewRuler.addedForeground\\\":\\\"#a4bb4aa0\\\",\\\"editorOverviewRuler.border\\\":\\\"#fdf6e300\\\",\\\"editorOverviewRuler.commonContentForeground\\\":\\\"#939f91\\\",\\\"editorOverviewRuler.currentContentForeground\\\":\\\"#6cb3c6\\\",\\\"editorOverviewRuler.deletedForeground\\\":\\\"#f1706fa0\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#f85552\\\",\\\"editorOverviewRuler.findMatchForeground\\\":\\\"#6ec398\\\",\\\"editorOverviewRuler.incomingContentForeground\\\":\\\"#6ec398\\\",\\\"editorOverviewRuler.infoForeground\\\":\\\"#df69ba\\\",\\\"editorOverviewRuler.modifiedForeground\\\":\\\"#6cb3c6a0\\\",\\\"editorOverviewRuler.rangeHighlightForeground\\\":\\\"#6ec398\\\",\\\"editorOverviewRuler.selectionHighlightForeground\\\":\\\"#6ec398\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#dfa000\\\",\\\"editorOverviewRuler.wordHighlightForeground\\\":\\\"#e0dcc7\\\",\\\"editorOverviewRuler.wordHighlightStrongForeground\\\":\\\"#e0dcc7\\\",\\\"editorRuler.foreground\\\":\\\"#e6e2cca0\\\",\\\"editorSuggestWidget.background\\\":\\\"#efebd4\\\",\\\"editorSuggestWidget.border\\\":\\\"#efebd4\\\",\\\"editorSuggestWidget.foreground\\\":\\\"#5c6a72\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#8da101\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#e6e2cc\\\",\\\"editorUnnecessaryCode.border\\\":\\\"#fdf6e3\\\",\\\"editorUnnecessaryCode.opacity\\\":\\\"#00000080\\\",\\\"editorWarning.background\\\":\\\"#e4b64900\\\",\\\"editorWarning.foreground\\\":\\\"#e4b649\\\",\\\"editorWhitespace.foreground\\\":\\\"#e6e2cc\\\",\\\"editorWidget.background\\\":\\\"#fdf6e3\\\",\\\"editorWidget.border\\\":\\\"#e0dcc7\\\",\\\"editorWidget.foreground\\\":\\\"#5c6a72\\\",\\\"errorForeground\\\":\\\"#f85552\\\",\\\"extensionBadge.remoteBackground\\\":\\\"#93b259\\\",\\\"extensionBadge.remoteForeground\\\":\\\"#fdf6e3\\\",\\\"extensionButton.prominentBackground\\\":\\\"#93b259\\\",\\\"extensionButton.prominentForeground\\\":\\\"#fdf6e3\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#93b259d0\\\",\\\"extensionIcon.preReleaseForeground\\\":\\\"#f57d26\\\",\\\"extensionIcon.starForeground\\\":\\\"#35a77c\\\",\\\"extensionIcon.verifiedForeground\\\":\\\"#8da101\\\",\\\"focusBorder\\\":\\\"#fdf6e300\\\",\\\"foreground\\\":\\\"#879686\\\",\\\"gitDecoration.addedResourceForeground\\\":\\\"#8da101a0\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#df69baa0\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#f85552a0\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#e0dcc7\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#3a94c5a0\\\",\\\"gitDecoration.stageDeletedResourceForeground\\\":\\\"#35a77ca0\\\",\\\"gitDecoration.stageModifiedResourceForeground\\\":\\\"#35a77ca0\\\",\\\"gitDecoration.submoduleResourceForeground\\\":\\\"#f57d26a0\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#dfa000a0\\\",\\\"gitlens.closedPullRequestIconColor\\\":\\\"#f85552\\\",\\\"gitlens.decorations.addedForegroundColor\\\":\\\"#8da101\\\",\\\"gitlens.decorations.branchAheadForegroundColor\\\":\\\"#35a77c\\\",\\\"gitlens.decorations.branchBehindForegroundColor\\\":\\\"#f57d26\\\",\\\"gitlens.decorations.branchDivergedForegroundColor\\\":\\\"#dfa000\\\",\\\"gitlens.decorations.branchMissingUpstreamForegroundColor\\\":\\\"#f85552\\\",\\\"gitlens.decorations.branchUnpublishedForegroundColor\\\":\\\"#3a94c5\\\",\\\"gitlens.decorations.branchUpToDateForegroundColor\\\":\\\"#5c6a72\\\",\\\"gitlens.decorations.copiedForegroundColor\\\":\\\"#df69ba\\\",\\\"gitlens.decorations.deletedForegroundColor\\\":\\\"#f85552\\\",\\\"gitlens.decorations.ignoredForegroundColor\\\":\\\"#879686\\\",\\\"gitlens.decorations.modifiedForegroundColor\\\":\\\"#3a94c5\\\",\\\"gitlens.decorations.renamedForegroundColor\\\":\\\"#df69ba\\\",\\\"gitlens.decorations.untrackedForegroundColor\\\":\\\"#dfa000\\\",\\\"gitlens.gutterBackgroundColor\\\":\\\"#fdf6e3\\\",\\\"gitlens.gutterForegroundColor\\\":\\\"#5c6a72\\\",\\\"gitlens.gutterUncommittedForegroundColor\\\":\\\"#3a94c5\\\",\\\"gitlens.lineHighlightBackgroundColor\\\":\\\"#f4f0d9\\\",\\\"gitlens.lineHighlightOverviewRulerColor\\\":\\\"#93b259\\\",\\\"gitlens.mergedPullRequestIconColor\\\":\\\"#df69ba\\\",\\\"gitlens.openPullRequestIconColor\\\":\\\"#35a77c\\\",\\\"gitlens.trailingLineForegroundColor\\\":\\\"#939f91\\\",\\\"gitlens.unpublishedCommitIconColor\\\":\\\"#dfa000\\\",\\\"gitlens.unpulledChangesIconColor\\\":\\\"#f57d26\\\",\\\"gitlens.unpushlishedChangesIconColor\\\":\\\"#3a94c5\\\",\\\"icon.foreground\\\":\\\"#35a77c\\\",\\\"imagePreview.border\\\":\\\"#fdf6e3\\\",\\\"input.background\\\":\\\"#fdf6e300\\\",\\\"input.border\\\":\\\"#e0dcc7\\\",\\\"input.foreground\\\":\\\"#5c6a72\\\",\\\"input.placeholderForeground\\\":\\\"#a4ad9e\\\",\\\"inputOption.activeBorder\\\":\\\"#35a77c\\\",\\\"inputValidation.errorBackground\\\":\\\"#f1706f\\\",\\\"inputValidation.errorBorder\\\":\\\"#f85552\\\",\\\"inputValidation.errorForeground\\\":\\\"#5c6a72\\\",\\\"inputValidation.infoBackground\\\":\\\"#6cb3c6\\\",\\\"inputValidation.infoBorder\\\":\\\"#3a94c5\\\",\\\"inputValidation.infoForeground\\\":\\\"#5c6a72\\\",\\\"inputValidation.warningBackground\\\":\\\"#e4b649\\\",\\\"inputValidation.warningBorder\\\":\\\"#dfa000\\\",\\\"inputValidation.warningForeground\\\":\\\"#5c6a72\\\",\\\"issues.closed\\\":\\\"#f85552\\\",\\\"issues.open\\\":\\\"#35a77c\\\",\\\"keybindingLabel.background\\\":\\\"#fdf6e300\\\",\\\"keybindingLabel.border\\\":\\\"#f4f0d9\\\",\\\"keybindingLabel.bottomBorder\\\":\\\"#efebd4\\\",\\\"keybindingLabel.foreground\\\":\\\"#5c6a72\\\",\\\"keybindingTable.headerBackground\\\":\\\"#efebd4\\\",\\\"keybindingTable.rowsBackground\\\":\\\"#f4f0d9\\\",\\\"list.activeSelectionBackground\\\":\\\"#e6e2cc80\\\",\\\"list.activeSelectionForeground\\\":\\\"#5c6a72\\\",\\\"list.dropBackground\\\":\\\"#f4f0d980\\\",\\\"list.errorForeground\\\":\\\"#f85552\\\",\\\"list.focusBackground\\\":\\\"#e6e2cc80\\\",\\\"list.focusForeground\\\":\\\"#5c6a72\\\",\\\"list.highlightForeground\\\":\\\"#8da101\\\",\\\"list.hoverBackground\\\":\\\"#fdf6e300\\\",\\\"list.hoverForeground\\\":\\\"#5c6a72\\\",\\\"list.inactiveFocusBackground\\\":\\\"#e6e2cc60\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#e6e2cc80\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#879686\\\",\\\"list.invalidItemForeground\\\":\\\"#f1706f\\\",\\\"list.warningForeground\\\":\\\"#dfa000\\\",\\\"menu.background\\\":\\\"#fdf6e3\\\",\\\"menu.foreground\\\":\\\"#879686\\\",\\\"menu.selectionBackground\\\":\\\"#f4f0d9\\\",\\\"menu.selectionForeground\\\":\\\"#5c6a72\\\",\\\"menubar.selectionBackground\\\":\\\"#fdf6e3\\\",\\\"menubar.selectionBorder\\\":\\\"#fdf6e3\\\",\\\"merge.border\\\":\\\"#fdf6e300\\\",\\\"merge.currentContentBackground\\\":\\\"#6cb3c640\\\",\\\"merge.currentHeaderBackground\\\":\\\"#6cb3c680\\\",\\\"merge.incomingContentBackground\\\":\\\"#6ec39840\\\",\\\"merge.incomingHeaderBackground\\\":\\\"#6ec39880\\\",\\\"minimap.errorHighlight\\\":\\\"#f1706f80\\\",\\\"minimap.findMatchHighlight\\\":\\\"#6ec39860\\\",\\\"minimap.selectionHighlight\\\":\\\"#e0dcc7f0\\\",\\\"minimap.warningHighlight\\\":\\\"#e4b64980\\\",\\\"minimapGutter.addedBackground\\\":\\\"#a4bb4aa0\\\",\\\"minimapGutter.deletedBackground\\\":\\\"#f1706fa0\\\",\\\"minimapGutter.modifiedBackground\\\":\\\"#6cb3c6a0\\\",\\\"notebook.cellBorderColor\\\":\\\"#e0dcc7\\\",\\\"notebook.cellHoverBackground\\\":\\\"#fdf6e3\\\",\\\"notebook.cellStatusBarItemHoverBackground\\\":\\\"#f4f0d9\\\",\\\"notebook.cellToolbarSeparator\\\":\\\"#e0dcc7\\\",\\\"notebook.focusedCellBackground\\\":\\\"#fdf6e3\\\",\\\"notebook.focusedCellBorder\\\":\\\"#e0dcc7\\\",\\\"notebook.focusedEditorBorder\\\":\\\"#e0dcc7\\\",\\\"notebook.focusedRowBorder\\\":\\\"#e0dcc7\\\",\\\"notebook.inactiveFocusedCellBorder\\\":\\\"#e0dcc7\\\",\\\"notebook.outputContainerBackgroundColor\\\":\\\"#f4f0d9\\\",\\\"notebook.selectedCellBorder\\\":\\\"#e0dcc7\\\",\\\"notebookStatusErrorIcon.foreground\\\":\\\"#f85552\\\",\\\"notebookStatusRunningIcon.foreground\\\":\\\"#3a94c5\\\",\\\"notebookStatusSuccessIcon.foreground\\\":\\\"#8da101\\\",\\\"notificationCenterHeader.background\\\":\\\"#efebd4\\\",\\\"notificationCenterHeader.foreground\\\":\\\"#5c6a72\\\",\\\"notificationLink.foreground\\\":\\\"#8da101\\\",\\\"notifications.background\\\":\\\"#fdf6e3\\\",\\\"notifications.foreground\\\":\\\"#5c6a72\\\",\\\"notificationsErrorIcon.foreground\\\":\\\"#f85552\\\",\\\"notificationsInfoIcon.foreground\\\":\\\"#3a94c5\\\",\\\"notificationsWarningIcon.foreground\\\":\\\"#dfa000\\\",\\\"panel.background\\\":\\\"#fdf6e3\\\",\\\"panel.border\\\":\\\"#fdf6e3\\\",\\\"panelInput.border\\\":\\\"#e0dcc7\\\",\\\"panelSection.border\\\":\\\"#efebd4\\\",\\\"panelSectionHeader.background\\\":\\\"#fdf6e3\\\",\\\"panelTitle.activeBorder\\\":\\\"#93b259d0\\\",\\\"panelTitle.activeForeground\\\":\\\"#5c6a72\\\",\\\"panelTitle.inactiveForeground\\\":\\\"#939f91\\\",\\\"peekView.border\\\":\\\"#e6e2cc\\\",\\\"peekViewEditor.background\\\":\\\"#f4f0d9\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#e4b64950\\\",\\\"peekViewEditorGutter.background\\\":\\\"#f4f0d9\\\",\\\"peekViewResult.background\\\":\\\"#f4f0d9\\\",\\\"peekViewResult.fileForeground\\\":\\\"#5c6a72\\\",\\\"peekViewResult.lineForeground\\\":\\\"#879686\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#e4b64950\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#6ec39850\\\",\\\"peekViewResult.selectionForeground\\\":\\\"#5c6a72\\\",\\\"peekViewTitle.background\\\":\\\"#e6e2cc\\\",\\\"peekViewTitleDescription.foreground\\\":\\\"#5c6a72\\\",\\\"peekViewTitleLabel.foreground\\\":\\\"#8da101\\\",\\\"pickerGroup.border\\\":\\\"#93b2591a\\\",\\\"pickerGroup.foreground\\\":\\\"#5c6a72\\\",\\\"ports.iconRunningProcessForeground\\\":\\\"#f57d26\\\",\\\"problemsErrorIcon.foreground\\\":\\\"#f85552\\\",\\\"problemsInfoIcon.foreground\\\":\\\"#3a94c5\\\",\\\"problemsWarningIcon.foreground\\\":\\\"#dfa000\\\",\\\"progressBar.background\\\":\\\"#93b259\\\",\\\"quickInputTitle.background\\\":\\\"#f4f0d9\\\",\\\"rust_analyzer.inlayHints.background\\\":\\\"#fdf6e300\\\",\\\"rust_analyzer.inlayHints.foreground\\\":\\\"#a4ad9ea0\\\",\\\"rust_analyzer.syntaxTreeBorder\\\":\\\"#f85552\\\",\\\"sash.hoverBorder\\\":\\\"#e6e2cc\\\",\\\"scrollbar.shadow\\\":\\\"#3c474d20\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#879686\\\",\\\"scrollbarSlider.background\\\":\\\"#e0dcc780\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#e0dcc7\\\",\\\"selection.background\\\":\\\"#e6e2ccc0\\\",\\\"settings.checkboxBackground\\\":\\\"#fdf6e3\\\",\\\"settings.checkboxBorder\\\":\\\"#e0dcc7\\\",\\\"settings.checkboxForeground\\\":\\\"#f57d26\\\",\\\"settings.dropdownBackground\\\":\\\"#fdf6e3\\\",\\\"settings.dropdownBorder\\\":\\\"#e0dcc7\\\",\\\"settings.dropdownForeground\\\":\\\"#35a77c\\\",\\\"settings.focusedRowBackground\\\":\\\"#f4f0d9\\\",\\\"settings.headerForeground\\\":\\\"#879686\\\",\\\"settings.modifiedItemIndicator\\\":\\\"#a4ad9e\\\",\\\"settings.numberInputBackground\\\":\\\"#fdf6e3\\\",\\\"settings.numberInputBorder\\\":\\\"#e0dcc7\\\",\\\"settings.numberInputForeground\\\":\\\"#df69ba\\\",\\\"settings.rowHoverBackground\\\":\\\"#f4f0d9\\\",\\\"settings.textInputBackground\\\":\\\"#fdf6e3\\\",\\\"settings.textInputBorder\\\":\\\"#e0dcc7\\\",\\\"settings.textInputForeground\\\":\\\"#3a94c5\\\",\\\"sideBar.background\\\":\\\"#fdf6e3\\\",\\\"sideBar.foreground\\\":\\\"#939f91\\\",\\\"sideBarSectionHeader.background\\\":\\\"#fdf6e300\\\",\\\"sideBarSectionHeader.foreground\\\":\\\"#879686\\\",\\\"sideBarTitle.foreground\\\":\\\"#879686\\\",\\\"statusBar.background\\\":\\\"#fdf6e3\\\",\\\"statusBar.border\\\":\\\"#fdf6e3\\\",\\\"statusBar.debuggingBackground\\\":\\\"#fdf6e3\\\",\\\"statusBar.debuggingForeground\\\":\\\"#f57d26\\\",\\\"statusBar.foreground\\\":\\\"#879686\\\",\\\"statusBar.noFolderBackground\\\":\\\"#fdf6e3\\\",\\\"statusBar.noFolderBorder\\\":\\\"#fdf6e3\\\",\\\"statusBar.noFolderForeground\\\":\\\"#879686\\\",\\\"statusBarItem.activeBackground\\\":\\\"#e6e2cc70\\\",\\\"statusBarItem.errorBackground\\\":\\\"#fdf6e3\\\",\\\"statusBarItem.errorForeground\\\":\\\"#f85552\\\",\\\"statusBarItem.hoverBackground\\\":\\\"#e6e2cca0\\\",\\\"statusBarItem.prominentBackground\\\":\\\"#fdf6e3\\\",\\\"statusBarItem.prominentForeground\\\":\\\"#5c6a72\\\",\\\"statusBarItem.prominentHoverBackground\\\":\\\"#e6e2cca0\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#fdf6e3\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#879686\\\",\\\"statusBarItem.warningBackground\\\":\\\"#fdf6e3\\\",\\\"statusBarItem.warningForeground\\\":\\\"#dfa000\\\",\\\"symbolIcon.arrayForeground\\\":\\\"#3a94c5\\\",\\\"symbolIcon.booleanForeground\\\":\\\"#df69ba\\\",\\\"symbolIcon.classForeground\\\":\\\"#dfa000\\\",\\\"symbolIcon.colorForeground\\\":\\\"#5c6a72\\\",\\\"symbolIcon.constantForeground\\\":\\\"#35a77c\\\",\\\"symbolIcon.constructorForeground\\\":\\\"#df69ba\\\",\\\"symbolIcon.enumeratorForeground\\\":\\\"#df69ba\\\",\\\"symbolIcon.enumeratorMemberForeground\\\":\\\"#35a77c\\\",\\\"symbolIcon.eventForeground\\\":\\\"#dfa000\\\",\\\"symbolIcon.fieldForeground\\\":\\\"#5c6a72\\\",\\\"symbolIcon.fileForeground\\\":\\\"#5c6a72\\\",\\\"symbolIcon.folderForeground\\\":\\\"#5c6a72\\\",\\\"symbolIcon.functionForeground\\\":\\\"#8da101\\\",\\\"symbolIcon.interfaceForeground\\\":\\\"#dfa000\\\",\\\"symbolIcon.keyForeground\\\":\\\"#8da101\\\",\\\"symbolIcon.keywordForeground\\\":\\\"#f85552\\\",\\\"symbolIcon.methodForeground\\\":\\\"#8da101\\\",\\\"symbolIcon.moduleForeground\\\":\\\"#df69ba\\\",\\\"symbolIcon.namespaceForeground\\\":\\\"#df69ba\\\",\\\"symbolIcon.nullForeground\\\":\\\"#35a77c\\\",\\\"symbolIcon.numberForeground\\\":\\\"#df69ba\\\",\\\"symbolIcon.objectForeground\\\":\\\"#df69ba\\\",\\\"symbolIcon.operatorForeground\\\":\\\"#f57d26\\\",\\\"symbolIcon.packageForeground\\\":\\\"#df69ba\\\",\\\"symbolIcon.propertyForeground\\\":\\\"#35a77c\\\",\\\"symbolIcon.referenceForeground\\\":\\\"#3a94c5\\\",\\\"symbolIcon.snippetForeground\\\":\\\"#5c6a72\\\",\\\"symbolIcon.stringForeground\\\":\\\"#8da101\\\",\\\"symbolIcon.structForeground\\\":\\\"#dfa000\\\",\\\"symbolIcon.textForeground\\\":\\\"#5c6a72\\\",\\\"symbolIcon.typeParameterForeground\\\":\\\"#35a77c\\\",\\\"symbolIcon.unitForeground\\\":\\\"#5c6a72\\\",\\\"symbolIcon.variableForeground\\\":\\\"#3a94c5\\\",\\\"tab.activeBackground\\\":\\\"#fdf6e3\\\",\\\"tab.activeBorder\\\":\\\"#93b259d0\\\",\\\"tab.activeForeground\\\":\\\"#5c6a72\\\",\\\"tab.border\\\":\\\"#fdf6e3\\\",\\\"tab.hoverBackground\\\":\\\"#fdf6e3\\\",\\\"tab.hoverForeground\\\":\\\"#5c6a72\\\",\\\"tab.inactiveBackground\\\":\\\"#fdf6e3\\\",\\\"tab.inactiveForeground\\\":\\\"#a4ad9e\\\",\\\"tab.lastPinnedBorder\\\":\\\"#93b259d0\\\",\\\"tab.unfocusedActiveBorder\\\":\\\"#939f91\\\",\\\"tab.unfocusedActiveForeground\\\":\\\"#879686\\\",\\\"tab.unfocusedHoverForeground\\\":\\\"#5c6a72\\\",\\\"tab.unfocusedInactiveForeground\\\":\\\"#a4ad9e\\\",\\\"terminal.ansiBlack\\\":\\\"#5c6a72\\\",\\\"terminal.ansiBlue\\\":\\\"#3a94c5\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#5c6a72\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#3a94c5\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#35a77c\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#8da101\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#df69ba\\\",\\\"terminal.ansiBrightRed\\\":\\\"#f85552\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#f4f0d9\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#dfa000\\\",\\\"terminal.ansiCyan\\\":\\\"#35a77c\\\",\\\"terminal.ansiGreen\\\":\\\"#8da101\\\",\\\"terminal.ansiMagenta\\\":\\\"#df69ba\\\",\\\"terminal.ansiRed\\\":\\\"#f85552\\\",\\\"terminal.ansiWhite\\\":\\\"#939f91\\\",\\\"terminal.ansiYellow\\\":\\\"#dfa000\\\",\\\"terminal.foreground\\\":\\\"#5c6a72\\\",\\\"terminalCursor.foreground\\\":\\\"#5c6a72\\\",\\\"testing.iconErrored\\\":\\\"#f85552\\\",\\\"testing.iconFailed\\\":\\\"#f85552\\\",\\\"testing.iconPassed\\\":\\\"#35a77c\\\",\\\"testing.iconQueued\\\":\\\"#3a94c5\\\",\\\"testing.iconSkipped\\\":\\\"#df69ba\\\",\\\"testing.iconUnset\\\":\\\"#dfa000\\\",\\\"testing.runAction\\\":\\\"#35a77c\\\",\\\"textBlockQuote.background\\\":\\\"#f4f0d9\\\",\\\"textBlockQuote.border\\\":\\\"#e6e2cc\\\",\\\"textCodeBlock.background\\\":\\\"#f4f0d9\\\",\\\"textLink.activeForeground\\\":\\\"#8da101c0\\\",\\\"textLink.foreground\\\":\\\"#8da101\\\",\\\"textPreformat.foreground\\\":\\\"#dfa000\\\",\\\"titleBar.activeBackground\\\":\\\"#fdf6e3\\\",\\\"titleBar.activeForeground\\\":\\\"#879686\\\",\\\"titleBar.border\\\":\\\"#fdf6e3\\\",\\\"titleBar.inactiveBackground\\\":\\\"#fdf6e3\\\",\\\"titleBar.inactiveForeground\\\":\\\"#a4ad9e\\\",\\\"toolbar.hoverBackground\\\":\\\"#f4f0d9\\\",\\\"tree.indentGuidesStroke\\\":\\\"#a4ad9e\\\",\\\"walkThrough.embeddedEditorBackground\\\":\\\"#f4f0d9\\\",\\\"welcomePage.buttonBackground\\\":\\\"#f4f0d9\\\",\\\"welcomePage.buttonHoverBackground\\\":\\\"#f4f0d9a0\\\",\\\"welcomePage.progress.foreground\\\":\\\"#8da101\\\",\\\"welcomePage.tileHoverBackground\\\":\\\"#f4f0d9\\\",\\\"widget.shadow\\\":\\\"#3c474d20\\\"},\\\"displayName\\\":\\\"Everforest Light\\\",\\\"name\\\":\\\"everforest-light\\\",\\\"semanticHighlighting\\\":true,\\\"semanticTokenColors\\\":{\\\"class:python\\\":\\\"#35a77c\\\",\\\"class:typescript\\\":\\\"#35a77c\\\",\\\"class:typescriptreact\\\":\\\"#35a77c\\\",\\\"enum:typescript\\\":\\\"#df69ba\\\",\\\"enum:typescriptreact\\\":\\\"#df69ba\\\",\\\"enumMember:typescript\\\":\\\"#3a94c5\\\",\\\"enumMember:typescriptreact\\\":\\\"#3a94c5\\\",\\\"interface:typescript\\\":\\\"#35a77c\\\",\\\"interface:typescriptreact\\\":\\\"#35a77c\\\",\\\"intrinsic:python\\\":\\\"#df69ba\\\",\\\"macro:rust\\\":\\\"#35a77c\\\",\\\"memberOperatorOverload\\\":\\\"#f57d26\\\",\\\"module:python\\\":\\\"#3a94c5\\\",\\\"namespace:rust\\\":\\\"#df69ba\\\",\\\"namespace:typescript\\\":\\\"#df69ba\\\",\\\"namespace:typescriptreact\\\":\\\"#df69ba\\\",\\\"operatorOverload\\\":\\\"#f57d26\\\",\\\"property.defaultLibrary:javascript\\\":\\\"#df69ba\\\",\\\"property.defaultLibrary:javascriptreact\\\":\\\"#df69ba\\\",\\\"property.defaultLibrary:typescript\\\":\\\"#df69ba\\\",\\\"property.defaultLibrary:typescriptreact\\\":\\\"#df69ba\\\",\\\"selfKeyword:rust\\\":\\\"#df69ba\\\",\\\"variable.defaultLibrary:javascript\\\":\\\"#df69ba\\\",\\\"variable.defaultLibrary:javascriptreact\\\":\\\"#df69ba\\\",\\\"variable.defaultLibrary:typescript\\\":\\\"#df69ba\\\",\\\"variable.defaultLibrary:typescriptreact\\\":\\\"#df69ba\\\"},\\\"tokenColors\\\":[{\\\"scope\\\":\\\"keyword, storage.type.function, storage.type.class, storage.type.enum, storage.type.interface, storage.type.property, keyword.operator.new, keyword.operator.expression, keyword.operator.new, keyword.operator.delete, storage.type.extends\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"keyword.other.debugger\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"storage, modifier, keyword.var, entity.name.tag, keyword.control.case, keyword.control.switch\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"keyword.operator\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"string, punctuation.definition.string.end, punctuation.definition.string.begin, punctuation.definition.string.template.begin, punctuation.definition.string.template.end\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"constant.character.escape, punctuation.quasi.element, punctuation.definition.template-expression, punctuation.section.embedded, storage.type.format, constant.other.placeholder, constant.other.placeholder, variable.interpolation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.name.function, support.function, meta.function, meta.function-call, meta.definition.method\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"keyword.control.at-rule, keyword.control.import, keyword.control.export, storage.type.namespace, punctuation.decorator, keyword.control.directive, keyword.preprocessor, punctuation.definition.preprocessor, punctuation.definition.directive, keyword.other.import, keyword.other.package, entity.name.type.namespace, entity.name.scope-resolution, keyword.other.using, keyword.package, keyword.import, keyword.map\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"storage.type.annotation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"entity.name.label, constant.other.label\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"support.module, support.node, support.other.module, support.type.object.module, entity.name.type.module, entity.name.type.class.module, keyword.control.module\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"storage.type, support.type, entity.name.type, keyword.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"entity.name.type.class, support.class, entity.name.class, entity.other.inherited-class, storage.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"constant.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"constant.language.boolean\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"entity.name.function.preprocessor\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"variable.language.this, variable.language.self, variable.language.super, keyword.other.this, variable.language.special, constant.language.null, constant.language.undefined, constant.language.nan\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"constant.language, support.constant\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"variable, support.variable, meta.definition.variable\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"variable.object.property, support.variable.property, variable.other.property, variable.other.object.property, variable.other.enummember, variable.other.member, meta.object-literal.key\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"punctuation, meta.brace, meta.delimiter, meta.bracket\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"heading.1.markdown, markup.heading.setext.1.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"heading.2.markdown, markup.heading.setext.2.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"heading.3.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"heading.4.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"heading.5.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"heading.6.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"punctuation.definition.heading.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"regular\\\",\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"string.other.link.title.markdown, constant.other.reference.link.markdown, string.other.link.description.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"regular\\\",\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"markup.underline.link.image.markdown, markup.underline.link.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\",\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"punctuation.definition.string.begin.markdown, punctuation.definition.string.end.markdown, punctuation.definition.italic.markdown, punctuation.definition.quote.begin.markdown, punctuation.definition.metadata.markdown, punctuation.separator.key-value.markdown, punctuation.definition.constant.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"punctuation.definition.bold.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"regular\\\",\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"meta.separator.markdown, punctuation.definition.constant.begin.markdown, punctuation.definition.constant.end.markdown\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"markup.italic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"markup.bold markup.italic, markup.italic markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic bold\\\"}},{\\\"scope\\\":\\\"punctuation.definition.markdown, punctuation.definition.raw.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"fenced_code.block.language\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"markup.fenced_code.block.markdown, markup.inline.raw.string.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"punctuation.definition.list.begin.markdown\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"punctuation.definition.heading.restructuredtext\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"punctuation.definition.field.restructuredtext, punctuation.separator.key-value.restructuredtext, punctuation.definition.directive.restructuredtext, punctuation.definition.constant.restructuredtext, punctuation.definition.italic.restructuredtext, punctuation.definition.table.restructuredtext\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"punctuation.definition.bold.restructuredtext\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"regular\\\",\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"entity.name.tag.restructuredtext, punctuation.definition.link.restructuredtext, punctuation.definition.raw.restructuredtext, punctuation.section.raw.restructuredtext\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"constant.other.footnote.link.restructuredtext\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"support.directive.restructuredtext\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"entity.name.directive.restructuredtext, markup.raw.restructuredtext, markup.raw.inner.restructuredtext, string.other.link.title.restructuredtext\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"punctuation.definition.function.latex, punctuation.definition.function.tex, punctuation.definition.keyword.latex, constant.character.newline.tex, punctuation.definition.keyword.tex\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"support.function.be.latex\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"support.function.section.latex, keyword.control.table.cell.latex, keyword.control.table.newline.latex\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"support.class.latex, variable.parameter.latex, variable.parameter.function.latex, variable.parameter.definition.label.latex, constant.other.reference.label.latex\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"keyword.control.preamble.latex\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"punctuation.separator.namespace.xml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"entity.name.tag.html, entity.name.tag.xml, entity.name.tag.localname.xml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.html, entity.other.attribute-name.xml, entity.other.attribute-name.localname.xml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.quoted.double.html, string.quoted.single.html, punctuation.definition.string.begin.html, punctuation.definition.string.end.html, punctuation.separator.key-value.html, punctuation.definition.string.begin.xml, punctuation.definition.string.end.xml, string.quoted.double.xml, string.quoted.single.xml, punctuation.definition.tag.begin.html, punctuation.definition.tag.end.html, punctuation.definition.tag.xml, meta.tag.xml, meta.tag.preprocessor.xml, meta.tag.other.html, meta.tag.block.any.html, meta.tag.inline.any.html\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"variable.language.documentroot.xml, meta.tag.sgml.doctype.xml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"storage.type.proto\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.quoted.double.proto.syntax, string.quoted.single.proto.syntax, string.quoted.double.proto, string.quoted.single.proto\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.name.class.proto, entity.name.class.message.proto\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"punctuation.definition.entity.css, punctuation.separator.key-value.css, punctuation.terminator.rule.css, punctuation.separator.list.comma.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.class.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"keyword.other.unit\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.pseudo-class.css, entity.other.attribute-name.pseudo-element.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.quoted.single.css, string.quoted.double.css, support.constant.property-value.css, meta.property-value.css, punctuation.definition.string.begin.css, punctuation.definition.string.end.css, constant.numeric.css, support.constant.font-name.css, variable.parameter.keyframe-list.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"support.type.property-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"support.type.vendored.property-name.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"entity.name.tag.css, entity.other.keyframe-offset.css, punctuation.definition.keyword.css, keyword.control.at-rule.keyframes.css, meta.selector.css\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"punctuation.definition.entity.scss, punctuation.separator.key-value.scss, punctuation.terminator.rule.scss, punctuation.separator.list.comma.scss\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"keyword.control.at-rule.keyframes.scss\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"punctuation.definition.interpolation.begin.bracket.curly.scss, punctuation.definition.interpolation.end.bracket.curly.scss\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"punctuation.definition.string.begin.scss, punctuation.definition.string.end.scss, string.quoted.double.scss, string.quoted.single.scss, constant.character.css.sass, meta.property-value.scss\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"keyword.control.at-rule.include.scss, keyword.control.at-rule.use.scss, keyword.control.at-rule.mixin.scss, keyword.control.at-rule.extend.scss, keyword.control.at-rule.import.scss\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"meta.function.stylus\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"entity.name.function.stylus\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.unquoted.js\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"punctuation.accessor.js, punctuation.separator.key-value.js, punctuation.separator.label.js, keyword.operator.accessor.js\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"punctuation.definition.block.tag.jsdoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"storage.type.js, storage.type.function.arrow.js\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"JSXNested\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"punctuation.definition.tag.jsx, entity.other.attribute-name.jsx, punctuation.definition.tag.begin.js.jsx, punctuation.definition.tag.end.js.jsx, entity.other.attribute-name.js.jsx\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.name.type.module.ts\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"keyword.operator.type.annotation.ts, punctuation.accessor.ts, punctuation.separator.key-value.ts\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"punctuation.definition.tag.directive.ts, entity.other.attribute-name.directive.ts\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.name.type.ts, entity.name.type.interface.ts, entity.other.inherited-class.ts, entity.name.type.alias.ts, entity.name.type.class.ts, entity.name.type.enum.ts\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"storage.type.ts, storage.type.function.arrow.ts, storage.type.type.ts\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"entity.name.type.module.ts\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"keyword.control.import.ts, keyword.control.export.ts, storage.type.namespace.ts\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"entity.name.type.module.tsx\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"keyword.operator.type.annotation.tsx, punctuation.accessor.tsx, punctuation.separator.key-value.tsx\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"punctuation.definition.tag.directive.tsx, entity.other.attribute-name.directive.tsx, punctuation.definition.tag.begin.tsx, punctuation.definition.tag.end.tsx, entity.other.attribute-name.tsx\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.name.type.tsx, entity.name.type.interface.tsx, entity.other.inherited-class.tsx, entity.name.type.alias.tsx, entity.name.type.class.tsx, entity.name.type.enum.tsx\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"entity.name.type.module.tsx\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"keyword.control.import.tsx, keyword.control.export.tsx, storage.type.namespace.tsx\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"storage.type.tsx, storage.type.function.arrow.tsx, storage.type.type.tsx, support.class.component.tsx\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"storage.type.function.coffee\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"meta.type-signature.purescript\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"keyword.other.double-colon.purescript, keyword.other.arrow.purescript, keyword.other.big-arrow.purescript\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"entity.name.function.purescript\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.quoted.single.purescript, string.quoted.double.purescript, punctuation.definition.string.begin.purescript, punctuation.definition.string.end.purescript, string.quoted.triple.purescript, entity.name.type.purescript\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"support.other.module.purescript\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"punctuation.dot.dart\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"storage.type.primitive.dart\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"support.class.dart\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"entity.name.function.dart, string.interpolated.single.dart, string.interpolated.double.dart\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"variable.language.dart\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"keyword.other.import.dart, storage.type.annotation.dart\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.class.pug\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"storage.type.function.pug\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.tag.pug\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"entity.name.tag.pug, storage.type.import.include.pug\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"meta.function-call.c, storage.modifier.array.bracket.square.c, meta.function.definition.parameters.c\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"punctuation.separator.dot-access.c, constant.character.escape.line-continuation.c\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"keyword.control.directive.include.c, punctuation.definition.directive.c, keyword.control.directive.pragma.c, keyword.control.directive.line.c, keyword.control.directive.define.c, keyword.control.directive.conditional.c, keyword.control.directive.diagnostic.error.c, keyword.control.directive.undef.c, keyword.control.directive.conditional.ifdef.c, keyword.control.directive.endif.c, keyword.control.directive.conditional.ifndef.c, keyword.control.directive.conditional.if.c, keyword.control.directive.else.c\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"punctuation.separator.pointer-access.c\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"variable.other.member.c\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"meta.function-call.cpp, storage.modifier.array.bracket.square.cpp, meta.function.definition.parameters.cpp, meta.body.function.definition.cpp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"punctuation.separator.dot-access.cpp, constant.character.escape.line-continuation.cpp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"keyword.control.directive.include.cpp, punctuation.definition.directive.cpp, keyword.control.directive.pragma.cpp, keyword.control.directive.line.cpp, keyword.control.directive.define.cpp, keyword.control.directive.conditional.cpp, keyword.control.directive.diagnostic.error.cpp, keyword.control.directive.undef.cpp, keyword.control.directive.conditional.ifdef.cpp, keyword.control.directive.endif.cpp, keyword.control.directive.conditional.ifndef.cpp, keyword.control.directive.conditional.if.cpp, keyword.control.directive.else.cpp, storage.type.namespace.definition.cpp, keyword.other.using.directive.cpp, storage.type.struct.cpp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"punctuation.separator.pointer-access.cpp, punctuation.section.angle-brackets.begin.template.call.cpp, punctuation.section.angle-brackets.end.template.call.cpp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"variable.other.member.cpp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"keyword.other.using.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"keyword.type.cs, constant.character.escape.cs, punctuation.definition.interpolation.begin.cs, punctuation.definition.interpolation.end.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.quoted.double.cs, string.quoted.single.cs, punctuation.definition.string.begin.cs, punctuation.definition.string.end.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"variable.other.object.property.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"entity.name.type.namespace.cs\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"keyword.symbol.fsharp, constant.language.unit.fsharp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"keyword.format.specifier.fsharp, entity.name.type.fsharp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.quoted.double.fsharp, string.quoted.single.fsharp, punctuation.definition.string.begin.fsharp, punctuation.definition.string.end.fsharp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.name.section.fsharp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"support.function.attribute.fsharp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"punctuation.separator.java, punctuation.separator.period.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"keyword.other.import.java, keyword.other.package.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"storage.type.function.arrow.java, keyword.control.ternary.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"variable.other.property.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"variable.language.wildcard.java, storage.modifier.import.java, storage.type.annotation.java, punctuation.definition.annotation.java, storage.modifier.package.java, entity.name.type.module.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"keyword.other.import.kotlin\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"storage.type.kotlin\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"constant.language.kotlin\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"entity.name.package.kotlin, storage.type.annotation.kotlin\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"entity.name.package.scala\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"constant.language.scala\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"entity.name.import.scala\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"string.quoted.double.scala, string.quoted.single.scala, punctuation.definition.string.begin.scala, punctuation.definition.string.end.scala, string.quoted.double.interpolated.scala, string.quoted.single.interpolated.scala, string.quoted.triple.scala\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.name.class, entity.other.inherited-class.scala\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"keyword.declaration.stable.scala, keyword.other.arrow.scala\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"keyword.other.import.scala\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"keyword.operator.navigation.groovy, meta.method.body.java, meta.definition.method.groovy, meta.definition.method.signature.java\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"punctuation.separator.groovy\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"keyword.other.import.groovy, keyword.other.package.groovy, keyword.other.import.static.groovy\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"storage.type.def.groovy\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"variable.other.interpolated.groovy, meta.method.groovy\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"storage.modifier.import.groovy, storage.modifier.package.groovy\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"storage.type.annotation.groovy\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"keyword.type.go\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"entity.name.package.go\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"keyword.import.go, keyword.package.go\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"entity.name.type.mod.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"keyword.operator.path.rust, keyword.operator.member-access.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"storage.type.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"support.constant.core.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"meta.attribute.rust, variable.language.rust, storage.type.module.rust\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"meta.function-call.swift, support.function.any-method.swift\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"support.variable.swift\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"keyword.operator.class.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"storage.type.trait.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"constant.language.php, support.other.namespace.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"storage.type.modifier.access.control.public.cpp, storage.type.modifier.access.control.private.cpp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"keyword.control.import.include.php, storage.type.php\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"meta.function-call.arguments.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"punctuation.definition.decorator.python, punctuation.separator.period.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"constant.language.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"keyword.control.import.python, keyword.control.import.from.python\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"constant.language.lua\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"entity.name.class.lua\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"meta.function.method.with-arguments.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"punctuation.separator.method.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"keyword.control.pseudo-method.ruby, storage.type.variable.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"keyword.other.special-method.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"keyword.control.module.ruby, punctuation.definition.constant.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"string.regexp.character-class.ruby,string.regexp.interpolated.ruby,punctuation.definition.character-class.ruby,string.regexp.group.ruby, punctuation.section.regexp.ruby, punctuation.definition.group.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"variable.other.constant.ruby\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"keyword.other.arrow.haskell, keyword.other.big-arrow.haskell, keyword.other.double-colon.haskell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"storage.type.haskell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"constant.other.haskell, string.quoted.double.haskell, string.quoted.single.haskell, punctuation.definition.string.begin.haskell, punctuation.definition.string.end.haskell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.name.function.haskell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"entity.name.namespace, meta.preprocessor.haskell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"keyword.control.import.julia, keyword.control.export.julia\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"keyword.storage.modifier.julia\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"constant.language.julia\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"support.function.macro.julia\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"keyword.other.period.elm\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"storage.type.elm\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"keyword.other.r\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"entity.name.function.r, variable.function.r\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"constant.language.r\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"entity.namespace.r\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"punctuation.separator.module-function.erlang, punctuation.section.directive.begin.erlang\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"keyword.control.directive.erlang, keyword.control.directive.define.erlang\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"entity.name.type.class.module.erlang\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.quoted.double.erlang, string.quoted.single.erlang, punctuation.definition.string.begin.erlang, punctuation.definition.string.end.erlang\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"keyword.control.directive.export.erlang, keyword.control.directive.module.erlang, keyword.control.directive.import.erlang, keyword.control.directive.behaviour.erlang\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"variable.other.readwrite.module.elixir, punctuation.definition.variable.elixir\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"constant.language.elixir\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"keyword.control.module.elixir\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"entity.name.type.value-signature.ocaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"keyword.other.ocaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"constant.language.variant.ocaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"storage.type.sub.perl, storage.type.declare.routine.perl\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"meta.function.lisp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"storage.type.function-type.lisp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"keyword.constant.lisp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.name.function.lisp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"constant.keyword.clojure, support.variable.clojure, meta.definition.variable.clojure\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.global.clojure\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"entity.name.function.clojure\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"meta.scope.if-block.shell, meta.scope.group.shell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"support.function.builtin.shell, entity.name.function.shell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.quoted.double.shell, string.quoted.single.shell, punctuation.definition.string.begin.shell, punctuation.definition.string.end.shell, string.unquoted.heredoc.shell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"keyword.control.heredoc-token.shell, variable.other.normal.shell, punctuation.definition.variable.shell, variable.other.special.shell, variable.other.positional.shell, variable.other.bracket.shell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"support.function.builtin.fish\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"support.function.unix.fish\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"variable.other.normal.fish, punctuation.definition.variable.fish, variable.other.fixed.fish, variable.other.special.fish\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"string.quoted.double.fish, punctuation.definition.string.end.fish, punctuation.definition.string.begin.fish, string.quoted.single.fish\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"constant.character.escape.single.fish\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"punctuation.definition.variable.powershell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"entity.name.function.powershell, support.function.attribute.powershell, support.function.powershell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.quoted.single.powershell, string.quoted.double.powershell, punctuation.definition.string.begin.powershell, punctuation.definition.string.end.powershell, string.quoted.double.heredoc.powershell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"variable.other.member.powershell\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"string.unquoted.alias.graphql\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5c6a72\\\"}},{\\\"scope\\\":\\\"keyword.type.graphql\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"entity.name.fragment.graphql\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"entity.name.function.target.makefile\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"variable.other.makefile\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"meta.scope.prerequisites.makefile\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"string.source.cmake\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.source.cmake\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"storage.source.cmake\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"punctuation.definition.map.viml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"storage.type.map.viml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"constant.character.map.viml, constant.character.map.key.viml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"constant.character.map.special.viml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"constant.language.tmux, constant.numeric.tmux\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"entity.name.function.package-manager.dockerfile\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"keyword.operator.flag.dockerfile\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.quoted.double.dockerfile, string.quoted.single.dockerfile\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"constant.character.escape.dockerfile\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"entity.name.type.base-image.dockerfile, entity.name.image.dockerfile\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"punctuation.definition.separator.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"markup.deleted.diff, punctuation.definition.deleted.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"meta.diff.range.context, punctuation.definition.range.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"meta.diff.header.from-file\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"markup.inserted.diff, punctuation.definition.inserted.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"markup.changed.diff, punctuation.definition.changed.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"punctuation.definition.from-file.diff\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"entity.name.section.group-title.ini, punctuation.definition.entity.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f85552\\\"}},{\\\"scope\\\":\\\"punctuation.separator.key-value.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"string.quoted.double.ini, string.quoted.single.ini, punctuation.definition.string.begin.ini, punctuation.definition.string.end.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"keyword.other.definition.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"support.function.aggregate.sql\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"string.quoted.single.sql, punctuation.definition.string.end.sql, punctuation.definition.string.begin.sql, string.quoted.double.sql\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"support.type.graphql\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#dfa000\\\"}},{\\\"scope\\\":\\\"variable.parameter.graphql\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"constant.character.enum.graphql\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"punctuation.support.type.property-name.begin.json, punctuation.support.type.property-name.end.json, punctuation.separator.dictionary.key-value.json, punctuation.definition.string.begin.json, punctuation.definition.string.end.json, punctuation.separator.dictionary.pair.json, punctuation.separator.array.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"support.type.property-name.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"string.quoted.double.json\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"punctuation.separator.key-value.mapping.yaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#939f91\\\"}},{\\\"scope\\\":\\\"string.unquoted.plain.out.yaml, string.quoted.single.yaml, string.quoted.double.yaml, punctuation.definition.string.begin.yaml, punctuation.definition.string.end.yaml, string.unquoted.plain.in.yaml, string.unquoted.block.yaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"punctuation.definition.anchor.yaml, punctuation.definition.block.sequence.item.yaml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#35a77c\\\"}},{\\\"scope\\\":\\\"keyword.key.toml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#f57d26\\\"}},{\\\"scope\\\":\\\"string.quoted.single.basic.line.toml, string.quoted.single.literal.line.toml, punctuation.definition.keyValuePair.toml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8da101\\\"}},{\\\"scope\\\":\\\"constant.other.boolean.toml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#3a94c5\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name.table.toml, punctuation.definition.table.toml, entity.other.attribute-name.table.array.toml, punctuation.definition.table.array.toml\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#df69ba\\\"}},{\\\"scope\\\":\\\"comment, string.comment, punctuation.definition.comment\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#939f91\\\"}}],\\\"type\\\":\\\"light\\\"}\"))\n"],"names":["everforestLight"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,07oDAA0jyD,CAAC","x_google_ignoreList":[0]}
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="-1 -1 22 36">
2
+ <path fill="#a766d8" fill-rule="nonzero" d="M16.51 25.44a4.034 4.034 0 1 1 0 8.069 4.034 4.034 0 0 1 0-8.069ZM4.035.492A4.034 4.034 0 0 1 7.166 7.07c-.906 1.113-1.982 2.308-1.982 3.743v.438c0 1.176.853 2.156 1.689 2.983.82.813 1.787 1.635 2.942 1.635h.425c1.424 0 2.612-1.06 3.718-1.956a4.035 4.035 0 1 1-.123 6.171c-1.033-.906-2.173-1.938-3.548-1.938h-.27c-1.23 0-2.248.915-3.113 1.79-.846.854-1.72 1.856-1.72 3.059v.279c0 1.368 1.017 2.508 1.91 3.545a4.035 4.035 0 1 1-6.1-.02c.896-1.028 1.912-2.162 1.912-3.525 0-1.364-1.016-2.497-1.912-3.524A4.014 4.014 0 0 1 0 17.099c0-.973.345-1.866.92-2.563.91-1.104 1.985-2.293 1.985-3.724 0-1.43-1.075-2.62-1.985-3.723A4.034 4.034 0 0 1 4.036.492Z"/>
3
+ </svg>
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const e = Object.freeze(
7
+ JSON.parse(
8
+ '{"displayName":"Fennel","name":"fennel","patterns":[{"include":"#expression"}],"repository":{"comment":{"patterns":[{"begin":";","end":"$","name":"comment.line.semicolon.fennel"}]},"constants":{"patterns":[{"match":"nil","name":"constant.language.nil.fennel"},{"match":"false|true","name":"constant.language.boolean.fennel"},{"match":"(-?\\\\d+\\\\.\\\\d+([Ee][-+]?\\\\d+)?)","name":"constant.numeric.double.fennel"},{"match":"(-?\\\\d+)","name":"constant.numeric.integer.fennel"}]},"expression":{"patterns":[{"include":"#comment"},{"include":"#constants"},{"include":"#sexp"},{"include":"#table"},{"include":"#vector"},{"include":"#keywords"},{"include":"#special"},{"include":"#lua"},{"include":"#strings"},{"include":"#methods"},{"include":"#symbols"}]},"keywords":{"match":":[^ ]+","name":"constant.keyword.fennel"},"lua":{"patterns":[{"match":"\\\\b(assert|collectgarbage|dofile|error|getmetatable|ipairs|load|loadfile|next|pairs|pcall|print|rawequal|rawget|rawlen|rawset|require|select|setmetatable|tonumber|tostring|type|xpcall)\\\\b","name":"support.function.fennel"},{"match":"\\\\b(coroutine|coroutine.create|coroutine.isyieldable|coroutine.resume|coroutine.running|coroutine.status|coroutine.wrap|coroutine.yield|debug|debug.debug|debug.gethook|debug.getinfo|debug.getlocal|debug.getmetatable|debug.getregistry|debug.getupvalue|debug.getuservalue|debug.sethook|debug.setlocal|debug.setmetatable|debug.setupvalue|debug.setuservalue|debug.traceback|debug.upvalueid|debug.upvaluejoin|io|io.close|io.flush|io.input|io.lines|io.open|io.output|io.popen|io.read|io.stderr|io.stdin|io.stdout|io.tmpfile|io.type|io.write|math|math.abs|math.acos|math.asin|math.atan|math.ceil|math.cos|math.deg|math.exp|math.floor|math.fmod|math.huge|math.log|math.max|math.maxinteger|math.min|math.mininteger|math.modf|math.pi|math.rad|math.random|math.randomseed|math.sin|math.sqrt|math.tan|math.tointeger|math.type|math.ult|os|os.clock|os.date|os.difftime|os.execute|os.exit|os.getenv|os.remove|os.rename|os.setlocale|os.time|os.tmpname|package|package.config|package.cpath|package.loaded|package.loadlib|package.path|package.preload|package.searchers|package.searchpath|string|string.byte|string.char|string.dump|string.find|string.format|string.gmatch|string.gsub|string.len|string.lower|string.match|string.pack|string.packsize|string.rep|string.reverse|string.sub|string.unpack|string.upper|table|table.concat|table.insert|table.move|table.pack|table.remove|table.sort|table.unpack|utf8|utf8.char|utf8.charpattern|utf8.codepoint|utf8.codes|utf8.len|utf8.offset)\\\\b","name":"support.function.library.fennel"},{"match":"\\\\b(_(?:G|VERSION))\\\\b","name":"constant.language.fennel"}]},"methods":{"patterns":[{"match":"\\\\w+:\\\\w+","name":"entity.name.function.method.fennel"}]},"sexp":{"begin":"\\\\(","beginCaptures":{"0":{"name":"punctuation.paren.open.fennel"}},"end":"\\\\)","endCaptures":{"0":{"name":"punctuation.paren.close.fennel"}},"name":"sexp.fennel","patterns":[{"include":"#expression"}]},"special":{"patterns":[{"match":"[#%*+]|\\\\?\\\\.|(\\\\.)?\\\\.|(/)?/|:|<=?|=|>=?|\\\\^","name":"keyword.special.fennel"},{"match":"(->(>)?)","name":"keyword.special.fennel"},{"match":"-\\\\?>(>)?","name":"keyword.special.fennel"},{"match":"-","name":"keyword.special.fennel"},{"match":"not=","name":"keyword.special.fennel"},{"match":"set-forcibly!","name":"keyword.special.fennel"},{"match":"\\\\b(and|band|bnot|bor|bxor|collect|comment|doc??|doto|each|eval-compiler|for|global|hashfn|icollect|if|import-macros|include|lambda|length|let|local|lshift|lua|macro|macrodebug|macros|match|not=?|or|partial|pick-args|pick-values|quote|require-macros|rshift|set|tset|values|var|when|while|with-open)\\\\b","name":"keyword.special.fennel"},{"match":"\\\\b(fn)\\\\b","name":"keyword.control.fennel"},{"match":"~=","name":"keyword.special.fennel"},{"match":"λ","name":"keyword.special.fennel"}]},"strings":{"begin":"\\"","end":"\\"","name":"string.quoted.double.fennel","patterns":[{"match":"\\\\\\\\.","name":"constant.character.escape.fennel"}]},"symbols":{"patterns":[{"match":"\\\\w+(?:\\\\.\\\\w+)+","name":"entity.name.function.symbol.fennel"},{"match":"\\\\w+","name":"variable.other.fennel"}]},"table":{"begin":"\\\\{","beginCaptures":{"0":{"name":"punctuation.table.bracket.open.fennel"}},"end":"}","endCaptures":{"0":{"name":"punctuation.table.bracket.close.fennel"}},"name":"table.fennel","patterns":[{"include":"#expression"}]},"vector":{"begin":"\\\\[","beginCaptures":{"0":{"name":"punctuation.vector.bracket.open.fennel"}},"end":"]","endCaptures":{"0":{"name":"punctuation.vector.bracket.close.fennel"}},"name":"meta.vector.fennel","patterns":[{"include":"#expression"}]}},"scopeName":"source.fnl"}',
9
+ ),
10
+ ),
11
+ n = [e];
12
+ export { n as default };
13
+ //# sourceMappingURL=fennel-BYunw83y.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fennel-BYunw83y.js","sources":["../../../../node_modules/@shikijs/langs/dist/fennel.mjs"],"sourcesContent":["const lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"Fennel\\\",\\\"name\\\":\\\"fennel\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#expression\\\"}],\\\"repository\\\":{\\\"comment\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\";\\\",\\\"end\\\":\\\"$\\\",\\\"name\\\":\\\"comment.line.semicolon.fennel\\\"}]},\\\"constants\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"nil\\\",\\\"name\\\":\\\"constant.language.nil.fennel\\\"},{\\\"match\\\":\\\"false|true\\\",\\\"name\\\":\\\"constant.language.boolean.fennel\\\"},{\\\"match\\\":\\\"(-?\\\\\\\\d+\\\\\\\\.\\\\\\\\d+([Ee][-+]?\\\\\\\\d+)?)\\\",\\\"name\\\":\\\"constant.numeric.double.fennel\\\"},{\\\"match\\\":\\\"(-?\\\\\\\\d+)\\\",\\\"name\\\":\\\"constant.numeric.integer.fennel\\\"}]},\\\"expression\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#comment\\\"},{\\\"include\\\":\\\"#constants\\\"},{\\\"include\\\":\\\"#sexp\\\"},{\\\"include\\\":\\\"#table\\\"},{\\\"include\\\":\\\"#vector\\\"},{\\\"include\\\":\\\"#keywords\\\"},{\\\"include\\\":\\\"#special\\\"},{\\\"include\\\":\\\"#lua\\\"},{\\\"include\\\":\\\"#strings\\\"},{\\\"include\\\":\\\"#methods\\\"},{\\\"include\\\":\\\"#symbols\\\"}]},\\\"keywords\\\":{\\\"match\\\":\\\":[^ ]+\\\",\\\"name\\\":\\\"constant.keyword.fennel\\\"},\\\"lua\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\b(assert|collectgarbage|dofile|error|getmetatable|ipairs|load|loadfile|next|pairs|pcall|print|rawequal|rawget|rawlen|rawset|require|select|setmetatable|tonumber|tostring|type|xpcall)\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.fennel\\\"},{\\\"match\\\":\\\"\\\\\\\\b(coroutine|coroutine.create|coroutine.isyieldable|coroutine.resume|coroutine.running|coroutine.status|coroutine.wrap|coroutine.yield|debug|debug.debug|debug.gethook|debug.getinfo|debug.getlocal|debug.getmetatable|debug.getregistry|debug.getupvalue|debug.getuservalue|debug.sethook|debug.setlocal|debug.setmetatable|debug.setupvalue|debug.setuservalue|debug.traceback|debug.upvalueid|debug.upvaluejoin|io|io.close|io.flush|io.input|io.lines|io.open|io.output|io.popen|io.read|io.stderr|io.stdin|io.stdout|io.tmpfile|io.type|io.write|math|math.abs|math.acos|math.asin|math.atan|math.ceil|math.cos|math.deg|math.exp|math.floor|math.fmod|math.huge|math.log|math.max|math.maxinteger|math.min|math.mininteger|math.modf|math.pi|math.rad|math.random|math.randomseed|math.sin|math.sqrt|math.tan|math.tointeger|math.type|math.ult|os|os.clock|os.date|os.difftime|os.execute|os.exit|os.getenv|os.remove|os.rename|os.setlocale|os.time|os.tmpname|package|package.config|package.cpath|package.loaded|package.loadlib|package.path|package.preload|package.searchers|package.searchpath|string|string.byte|string.char|string.dump|string.find|string.format|string.gmatch|string.gsub|string.len|string.lower|string.match|string.pack|string.packsize|string.rep|string.reverse|string.sub|string.unpack|string.upper|table|table.concat|table.insert|table.move|table.pack|table.remove|table.sort|table.unpack|utf8|utf8.char|utf8.charpattern|utf8.codepoint|utf8.codes|utf8.len|utf8.offset)\\\\\\\\b\\\",\\\"name\\\":\\\"support.function.library.fennel\\\"},{\\\"match\\\":\\\"\\\\\\\\b(_(?:G|VERSION))\\\\\\\\b\\\",\\\"name\\\":\\\"constant.language.fennel\\\"}]},\\\"methods\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\w+:\\\\\\\\w+\\\",\\\"name\\\":\\\"entity.name.function.method.fennel\\\"}]},\\\"sexp\\\":{\\\"begin\\\":\\\"\\\\\\\\(\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.paren.open.fennel\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.paren.close.fennel\\\"}},\\\"name\\\":\\\"sexp.fennel\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#expression\\\"}]},\\\"special\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"[#%*+]|\\\\\\\\?\\\\\\\\.|(\\\\\\\\.)?\\\\\\\\.|(/)?/|:|<=?|=|>=?|\\\\\\\\^\\\",\\\"name\\\":\\\"keyword.special.fennel\\\"},{\\\"match\\\":\\\"(->(>)?)\\\",\\\"name\\\":\\\"keyword.special.fennel\\\"},{\\\"match\\\":\\\"-\\\\\\\\?>(>)?\\\",\\\"name\\\":\\\"keyword.special.fennel\\\"},{\\\"match\\\":\\\"-\\\",\\\"name\\\":\\\"keyword.special.fennel\\\"},{\\\"match\\\":\\\"not=\\\",\\\"name\\\":\\\"keyword.special.fennel\\\"},{\\\"match\\\":\\\"set-forcibly!\\\",\\\"name\\\":\\\"keyword.special.fennel\\\"},{\\\"match\\\":\\\"\\\\\\\\b(and|band|bnot|bor|bxor|collect|comment|doc??|doto|each|eval-compiler|for|global|hashfn|icollect|if|import-macros|include|lambda|length|let|local|lshift|lua|macro|macrodebug|macros|match|not=?|or|partial|pick-args|pick-values|quote|require-macros|rshift|set|tset|values|var|when|while|with-open)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.special.fennel\\\"},{\\\"match\\\":\\\"\\\\\\\\b(fn)\\\\\\\\b\\\",\\\"name\\\":\\\"keyword.control.fennel\\\"},{\\\"match\\\":\\\"~=\\\",\\\"name\\\":\\\"keyword.special.fennel\\\"},{\\\"match\\\":\\\"λ\\\",\\\"name\\\":\\\"keyword.special.fennel\\\"}]},\\\"strings\\\":{\\\"begin\\\":\\\"\\\\\\\"\\\",\\\"end\\\":\\\"\\\\\\\"\\\",\\\"name\\\":\\\"string.quoted.double.fennel\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\.\\\",\\\"name\\\":\\\"constant.character.escape.fennel\\\"}]},\\\"symbols\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\w+(?:\\\\\\\\.\\\\\\\\w+)+\\\",\\\"name\\\":\\\"entity.name.function.symbol.fennel\\\"},{\\\"match\\\":\\\"\\\\\\\\w+\\\",\\\"name\\\":\\\"variable.other.fennel\\\"}]},\\\"table\\\":{\\\"begin\\\":\\\"\\\\\\\\{\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.table.bracket.open.fennel\\\"}},\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.table.bracket.close.fennel\\\"}},\\\"name\\\":\\\"table.fennel\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#expression\\\"}]},\\\"vector\\\":{\\\"begin\\\":\\\"\\\\\\\\[\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.vector.bracket.open.fennel\\\"}},\\\"end\\\":\\\"]\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.vector.bracket.close.fennel\\\"}},\\\"name\\\":\\\"meta.vector.fennel\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#expression\\\"}]}},\\\"scopeName\\\":\\\"source.fnl\\\"}\"))\n\nexport default [\nlang\n]\n"],"names":["lang","fennel"],"mappings":"AAAA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,+lJAAu/J,CAAC,EAE9hKC,EAAe,CACfD,CACA","x_google_ignoreList":[0]}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const e = Object.freeze(
7
+ JSON.parse(
8
+ `{"displayName":"Fish","name":"fish","patterns":[{"include":"#string-double"},{"include":"#string-single"},{"include":"#comment"},{"include":"#subshell-bare"},{"include":"#subshell"},{"include":"#command"},{"include":"#keywords"},{"include":"#io-redirection"},{"include":"#operators"},{"include":"#options"},{"include":"#variable"},{"include":"#escape"}],"repository":{"command":{"captures":{"2":{"name":"keyword.operator.pipe.fish"},"3":{"name":"keyword.control.fish"},"5":{"name":"support.function.command.fish"}},"match":"(^\\\\s*|&&\\\\s*|(\\\\|)\\\\s*|\\\\(\\\\s*|;\\\\s*|\\\\b(if|while)\\\\b\\\\s+)(?!(?<!\\\\.)\\\\b(function|while|if|else|switch|case|for|in|begin|end|continue|break|return|source|exit|wait|and|or|not)\\\\b(?![!?]))([-\\\\].0-9A-\\\\[_a-z]+)"},"command-subshell":{"captures":{"2":{"name":"keyword.operator.pipe.fish"},"3":{"name":"keyword.control.fish"},"5":{"name":"support.function.command.fish"}},"match":"(\\\\G\\\\s*|&&\\\\s*|(\\\\|)\\\\s*|\\\\(\\\\s*|;\\\\s*|\\\\b(if|while)\\\\b\\\\s+)(?!(?<!\\\\.)\\\\b(function|while|if|else|switch|case|for|in|begin|end|continue|break|return|source|exit|wait|and|or|not)\\\\b(?![!?]))([-\\\\].0-9A-\\\\[_a-z]+)"},"comment":{"captures":{"1":{"name":"punctuation.definition.comment.fish"}},"match":"(?<!\\\\$)(#)(?!\\\\{).*$\\\\n?","name":"comment.line.number-sign.fish"},"escape":{"patterns":[{"match":"\\\\\\\\[] \\"#$\\\\&-*;<>?\\\\[^abefnrtv{-~]","name":"constant.character.escape.string.fish"},{"match":"\\\\\\\\x\\\\h{1,2}","name":"constant.character.escape.hex-ascii.fish"},{"match":"\\\\\\\\X\\\\h{1,2}","name":"constant.character.escape.hex-byte.fish"},{"match":"\\\\\\\\[0-7]{1,3}","name":"constant.character.escape.octal.fish"},{"match":"\\\\\\\\u\\\\h{1,4}","name":"constant.character.escape.unicode-16-bit.fish"},{"match":"\\\\\\\\U\\\\h{1,8}","name":"constant.character.escape.unicode-32-bit.fish"},{"match":"\\\\\\\\c[A-Za-z]","name":"constant.character.escape.control.fish"}]},"io-redirection":{"patterns":[{"captures":{"1":{"name":"keyword.operator.redirect.fish"},"2":{"name":"keyword.operator.redirect.target.fish"}},"match":"(<|(?:[>^]|>>|\\\\^\\\\^)(?:&[-012])?|[012](?:[<>]|>>)(?:&[-012])?)\\\\s*(?!\\\\()([\\\\--9A-Z_a-z]+)"},{"match":"<|([>^]|>>|\\\\^\\\\^)(&[-012])?|[012]([<>]|>>)(&[-012])?","name":"keyword.operator.redirect.fish"}]},"keywords":{"patterns":[{"captures":{"2":{"name":"keyword.control.fish"}},"match":"(^\\\\s*|&&\\\\s*|(?<=\\\\|)\\\\s*|\\\\(\\\\s*|;\\\\s*|(?<=\\\\bwhile\\\\b)\\\\s+|(?<=\\\\bif\\\\b)\\\\s+|(?<=\\\\band\\\\b)\\\\s+|(?<=\\\\bor\\\\b)\\\\s+|(?<=\\\\bnot\\\\b)\\\\s+)(?<!\\\\.)\\\\b(while|if|and|or|not)\\\\b(?![!?])"},{"captures":{"2":{"name":"keyword.control.fish"}},"match":"(^\\\\s*|&&\\\\s*|(?<=\\\\|)\\\\s*|\\\\(\\\\s*|;\\\\s*)(?<!\\\\.)\\\\b(function|else|switch|case|for|begin|end|continue|break|return|source|exit|wait)\\\\b(?![!?])"},{"match":"\\\\b(in)\\\\b(?![!?])","name":"keyword.control.fish"}]},"keywords-subshell":{"patterns":[{"captures":{"2":{"name":"keyword.control.fish"}},"match":"(\\\\G\\\\s*|&&\\\\s*|(?<=\\\\|)\\\\s*|\\\\(\\\\s*|;\\\\s*|(?<=\\\\bwhile\\\\b)\\\\s+|(?<=\\\\bif\\\\b)\\\\s+|(?<=\\\\band\\\\b)\\\\s+|(?<=\\\\bor\\\\b)\\\\s+|(?<=\\\\bnot\\\\b)\\\\s+)(?<!\\\\.)\\\\b(while|if|and|or|not)\\\\b(?![!?])"},{"captures":{"2":{"name":"keyword.control.fish"}},"match":"(\\\\G\\\\s*|&&\\\\s*|(?<=\\\\|)\\\\s*|\\\\(\\\\s*|;\\\\s*)(?<!\\\\.)\\\\b(function|else|switch|case|for|begin|end|continue|break|return|source|exit|wait)\\\\b(?![!?])"},{"match":"\\\\b(in)\\\\b(?![!?])","name":"keyword.control.fish"}]},"operators":{"patterns":[{"match":"&","name":"keyword.operator.background.fish"},{"match":"\\\\*\\\\*|[*?]","name":"keyword.operator.glob.fish"}]},"options":{"captures":{"1":{"name":"source.option.fish"}},"match":"\\\\s(-{1,2}[-0-9A-Z_a-z]+|-\\\\w)\\\\b"},"slice":{"begin":"\\\\[","beginCaptures":{"0":{"name":"punctuation.definition.slice.begin.fish"}},"end":"(?<!\\\\\\\\)((\\\\\\\\\\\\\\\\)*)(])","endCaptures":{"1":{"name":"constant.character.escape.string.fish"},"3":{"name":"punctuation.definition.slice.end.fish"}},"name":"meta.embedded.slice.fish variable.interpolation.fish","patterns":[{"include":"#string-double"},{"include":"#string-single"},{"include":"#subshell-bare"},{"include":"#subshell"},{"include":"#variable"},{"include":"#escape"}]},"slice-string-double":{"begin":"\\\\[","beginCaptures":{"0":{"name":"punctuation.definition.slice.begin.fish"}},"end":"(?<!\\\\\\\\)((\\\\\\\\\\\\\\\\)*)(])","endCaptures":{"1":{"name":"constant.character.escape.string.fish"},"3":{"name":"punctuation.definition.slice.end.fish"}},"name":"meta.embedded.slice.fish variable.interpolation.string.fish","patterns":[{"include":"#subshell"},{"include":"#variable"},{"match":"\\\\\\\\([\\"$]|$|\\\\\\\\)","name":"constant.character.escape.fish"}]},"string-double":{"begin":"\\"","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.fish"}},"end":"\\"","endCaptures":{"0":{"name":"punctuation.definition.string.end.fish"}},"name":"string.quoted.double.fish","patterns":[{"include":"#subshell"},{"include":"#variable-string-double"},{"match":"\\\\\\\\([\\"$]|$|\\\\\\\\)","name":"constant.character.escape.fish"}]},"string-single":{"begin":"'","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.fish"}},"end":"'","endCaptures":{"0":{"name":"punctuation.definition.string.end.fish"}},"name":"string.quoted.single.fish","patterns":[{"match":"\\\\\\\\(['\\\\\\\\\`])","name":"constant.character.escape.fish"}]},"subshell":{"begin":"\\\\$\\\\(","beginCaptures":{"0":{"name":"punctuation.definition.subshell.begin.fish"}},"end":"(?<!\\\\\\\\)((\\\\\\\\\\\\\\\\)*)(\\\\))","endCaptures":{"1":{"name":"constant.character.escape.string.fish"},"3":{"name":"punctuation.definition.subshell.end.fish"}},"name":"meta.embedded.subshell.fish","patterns":[{"include":"#string-double"},{"include":"#string-single"},{"include":"#comment"},{"include":"#keywords-subshell"},{"include":"#command-subshell"},{"include":"#io-redirection"},{"include":"#operators"},{"include":"#options"},{"include":"#subshell"},{"include":"#variable"},{"include":"#escape"}]},"subshell-bare":{"begin":"\\\\(","beginCaptures":{"0":{"name":"punctuation.definition.subshell.begin.fish"}},"end":"(?<!\\\\\\\\)((\\\\\\\\\\\\\\\\)*)(\\\\))","endCaptures":{"1":{"name":"constant.character.escape.string.fish"},"3":{"name":"punctuation.definition.subshell.end.fish"}},"name":"meta.embedded.subshell.fish","patterns":[{"include":"#string-double"},{"include":"#string-single"},{"include":"#comment"},{"include":"#keywords-subshell"},{"include":"#command-subshell"},{"include":"#io-redirection"},{"include":"#operators"},{"include":"#options"},{"include":"#subshell-bare"},{"include":"#subshell"},{"include":"#variable"},{"include":"#escape"}]},"variable":{"patterns":[{"begin":"(\\\\$)(argv|CMD_DURATION|COLUMNS|fish_bind_mode|fish_color_autosuggestion|fish_color_cancel|fish_color_command|fish_color_comment|fish_color_cwd|fish_color_cwd_root|fish_color_end|fish_color_error|fish_color_escape|fish_color_hg_added|fish_color_hg_clean|fish_color_hg_copied|fish_color_hg_deleted|fish_color_hg_dirty|fish_color_hg_modified|fish_color_hg_renamed|fish_color_hg_unmerged|fish_color_hg_untracked|fish_color_history_current|fish_color_host|fish_color_host_remote|fish_color_match|fish_color_normal|fish_color_operator|fish_color_param|fish_color_quote|fish_color_redirection|fish_color_search_match|fish_color_selection|fish_color_status|fish_color_user|fish_color_valid_path|fish_complete_path|fish_function_path|fish_greeting|fish_key_bindings|fish_pager_color_completion|fish_pager_color_description|fish_pager_color_prefix|fish_pager_color_progress|fish_pid|fish_prompt_hg_status_added|fish_prompt_hg_status_copied|fish_prompt_hg_status_deleted|fish_prompt_hg_status_modified|fish_prompt_hg_status_order|fish_prompt_hg_status_unmerged|fish_prompt_hg_status_untracked|FISH_VERSION|history|hostname|IFS|LINES|pipestatus|status|umask|version)\\\\b(?=\\\\[)","beginCaptures":{"1":{"name":"punctuation.definition.variable.fish"},"2":{"name":"variable.language.fish"}},"end":"(?<=])","name":"variable.language.fish","patterns":[{"include":"#slice"}]},{"captures":{"1":{"name":"punctuation.definition.variable.fish"}},"match":"(\\\\$)(argv|CMD_DURATION|COLUMNS|fish_bind_mode|fish_color_autosuggestion|fish_color_cancel|fish_color_command|fish_color_comment|fish_color_cwd|fish_color_cwd_root|fish_color_end|fish_color_error|fish_color_escape|fish_color_hg_added|fish_color_hg_clean|fish_color_hg_copied|fish_color_hg_deleted|fish_color_hg_dirty|fish_color_hg_modified|fish_color_hg_renamed|fish_color_hg_unmerged|fish_color_hg_untracked|fish_color_history_current|fish_color_host|fish_color_host_remote|fish_color_match|fish_color_normal|fish_color_operator|fish_color_param|fish_color_quote|fish_color_redirection|fish_color_search_match|fish_color_selection|fish_color_status|fish_color_user|fish_color_valid_path|fish_complete_path|fish_function_path|fish_greeting|fish_key_bindings|fish_pager_color_completion|fish_pager_color_description|fish_pager_color_prefix|fish_pager_color_progress|fish_pid|fish_prompt_hg_status_added|fish_prompt_hg_status_copied|fish_prompt_hg_status_deleted|fish_prompt_hg_status_modified|fish_prompt_hg_status_order|fish_prompt_hg_status_unmerged|fish_prompt_hg_status_untracked|FISH_VERSION|history|hostname|IFS|LINES|pipestatus|status|umask|version)\\\\b","name":"variable.language.fish"},{"begin":"(\\\\$)([A-Z_a-z][0-9A-Z_a-z]*)(?=\\\\[)","beginCaptures":{"1":{"name":"punctuation.definition.variable.fish"},"2":{"name":"variable.other.normal.fish"}},"end":"(?<=])","name":"variable.other.normal.fish","patterns":[{"include":"#slice"}]},{"captures":{"1":{"name":"punctuation.definition.variable.fish"}},"match":"(\\\\$)[A-Z_a-z][0-9A-Z_a-z]*","name":"variable.other.normal.fish"}]},"variable-string-double":{"patterns":[{"begin":"(\\\\$)(argv|CMD_DURATION|COLUMNS|fish_bind_mode|fish_color_autosuggestion|fish_color_cancel|fish_color_command|fish_color_comment|fish_color_cwd|fish_color_cwd_root|fish_color_end|fish_color_error|fish_color_escape|fish_color_hg_added|fish_color_hg_clean|fish_color_hg_copied|fish_color_hg_deleted|fish_color_hg_dirty|fish_color_hg_modified|fish_color_hg_renamed|fish_color_hg_unmerged|fish_color_hg_untracked|fish_color_history_current|fish_color_host|fish_color_host_remote|fish_color_match|fish_color_normal|fish_color_operator|fish_color_param|fish_color_quote|fish_color_redirection|fish_color_search_match|fish_color_selection|fish_color_status|fish_color_user|fish_color_valid_path|fish_complete_path|fish_function_path|fish_greeting|fish_key_bindings|fish_pager_color_completion|fish_pager_color_description|fish_pager_color_prefix|fish_pager_color_progress|fish_pid|fish_prompt_hg_status_added|fish_prompt_hg_status_copied|fish_prompt_hg_status_deleted|fish_prompt_hg_status_modified|fish_prompt_hg_status_order|fish_prompt_hg_status_unmerged|fish_prompt_hg_status_untracked|FISH_VERSION|history|hostname|IFS|LINES|pipestatus|status|umask|version)\\\\b(?=\\\\[)","beginCaptures":{"1":{"name":"punctuation.definition.variable.fish"},"2":{"name":"variable.language.fish"}},"end":"(?<=])","name":"variable.language.fish","patterns":[{"include":"#slice-string-double"}]},{"captures":{"1":{"name":"punctuation.definition.variable.fish"}},"match":"(\\\\$)(argv|CMD_DURATION|COLUMNS|fish_bind_mode|fish_color_autosuggestion|fish_color_cancel|fish_color_command|fish_color_comment|fish_color_cwd|fish_color_cwd_root|fish_color_end|fish_color_error|fish_color_escape|fish_color_hg_added|fish_color_hg_clean|fish_color_hg_copied|fish_color_hg_deleted|fish_color_hg_dirty|fish_color_hg_modified|fish_color_hg_renamed|fish_color_hg_unmerged|fish_color_hg_untracked|fish_color_history_current|fish_color_host|fish_color_host_remote|fish_color_match|fish_color_normal|fish_color_operator|fish_color_param|fish_color_quote|fish_color_redirection|fish_color_search_match|fish_color_selection|fish_color_status|fish_color_user|fish_color_valid_path|fish_complete_path|fish_function_path|fish_greeting|fish_key_bindings|fish_pager_color_completion|fish_pager_color_description|fish_pager_color_prefix|fish_pager_color_progress|fish_pid|fish_prompt_hg_status_added|fish_prompt_hg_status_copied|fish_prompt_hg_status_deleted|fish_prompt_hg_status_modified|fish_prompt_hg_status_order|fish_prompt_hg_status_unmerged|fish_prompt_hg_status_untracked|FISH_VERSION|history|hostname|IFS|LINES|pipestatus|status|umask|version)\\\\b","name":"variable.language.fish"},{"begin":"(\\\\$)([A-Z_a-z][0-9A-Z_a-z]*)(?=\\\\[)","beginCaptures":{"1":{"name":"punctuation.definition.variable.fish"},"2":{"name":"variable.other.normal.fish"}},"end":"(?<=])","name":"variable.other.normal.fish","patterns":[{"include":"#slice-string-double"}]},{"captures":{"1":{"name":"punctuation.definition.variable.fish"}},"match":"(\\\\$)[A-Z_a-z][0-9A-Z_a-z]*","name":"variable.other.normal.fish"}]}},"scopeName":"source.fish"}`,
9
+ ),
10
+ ),
11
+ i = [e];
12
+ export { i as default };
13
+ //# sourceMappingURL=fish-BvzEVeQv.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fish-BvzEVeQv.js","sources":["../../../../node_modules/@shikijs/langs/dist/fish.mjs"],"sourcesContent":["const lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"Fish\\\",\\\"name\\\":\\\"fish\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#string-double\\\"},{\\\"include\\\":\\\"#string-single\\\"},{\\\"include\\\":\\\"#comment\\\"},{\\\"include\\\":\\\"#subshell-bare\\\"},{\\\"include\\\":\\\"#subshell\\\"},{\\\"include\\\":\\\"#command\\\"},{\\\"include\\\":\\\"#keywords\\\"},{\\\"include\\\":\\\"#io-redirection\\\"},{\\\"include\\\":\\\"#operators\\\"},{\\\"include\\\":\\\"#options\\\"},{\\\"include\\\":\\\"#variable\\\"},{\\\"include\\\":\\\"#escape\\\"}],\\\"repository\\\":{\\\"command\\\":{\\\"captures\\\":{\\\"2\\\":{\\\"name\\\":\\\"keyword.operator.pipe.fish\\\"},\\\"3\\\":{\\\"name\\\":\\\"keyword.control.fish\\\"},\\\"5\\\":{\\\"name\\\":\\\"support.function.command.fish\\\"}},\\\"match\\\":\\\"(^\\\\\\\\s*|&&\\\\\\\\s*|(\\\\\\\\|)\\\\\\\\s*|\\\\\\\\(\\\\\\\\s*|;\\\\\\\\s*|\\\\\\\\b(if|while)\\\\\\\\b\\\\\\\\s+)(?!(?<!\\\\\\\\.)\\\\\\\\b(function|while|if|else|switch|case|for|in|begin|end|continue|break|return|source|exit|wait|and|or|not)\\\\\\\\b(?![!?]))([-\\\\\\\\].0-9A-\\\\\\\\[_a-z]+)\\\"},\\\"command-subshell\\\":{\\\"captures\\\":{\\\"2\\\":{\\\"name\\\":\\\"keyword.operator.pipe.fish\\\"},\\\"3\\\":{\\\"name\\\":\\\"keyword.control.fish\\\"},\\\"5\\\":{\\\"name\\\":\\\"support.function.command.fish\\\"}},\\\"match\\\":\\\"(\\\\\\\\G\\\\\\\\s*|&&\\\\\\\\s*|(\\\\\\\\|)\\\\\\\\s*|\\\\\\\\(\\\\\\\\s*|;\\\\\\\\s*|\\\\\\\\b(if|while)\\\\\\\\b\\\\\\\\s+)(?!(?<!\\\\\\\\.)\\\\\\\\b(function|while|if|else|switch|case|for|in|begin|end|continue|break|return|source|exit|wait|and|or|not)\\\\\\\\b(?![!?]))([-\\\\\\\\].0-9A-\\\\\\\\[_a-z]+)\\\"},\\\"comment\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.comment.fish\\\"}},\\\"match\\\":\\\"(?<!\\\\\\\\$)(#)(?!\\\\\\\\{).*$\\\\\\\\n?\\\",\\\"name\\\":\\\"comment.line.number-sign.fish\\\"},\\\"escape\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\[] \\\\\\\"#$\\\\\\\\&-*;<>?\\\\\\\\[^abefnrtv{-~]\\\",\\\"name\\\":\\\"constant.character.escape.string.fish\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\x\\\\\\\\h{1,2}\\\",\\\"name\\\":\\\"constant.character.escape.hex-ascii.fish\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\X\\\\\\\\h{1,2}\\\",\\\"name\\\":\\\"constant.character.escape.hex-byte.fish\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\[0-7]{1,3}\\\",\\\"name\\\":\\\"constant.character.escape.octal.fish\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\u\\\\\\\\h{1,4}\\\",\\\"name\\\":\\\"constant.character.escape.unicode-16-bit.fish\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\U\\\\\\\\h{1,8}\\\",\\\"name\\\":\\\"constant.character.escape.unicode-32-bit.fish\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\c[A-Za-z]\\\",\\\"name\\\":\\\"constant.character.escape.control.fish\\\"}]},\\\"io-redirection\\\":{\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.operator.redirect.fish\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.operator.redirect.target.fish\\\"}},\\\"match\\\":\\\"(<|(?:[>^]|>>|\\\\\\\\^\\\\\\\\^)(?:&[-012])?|[012](?:[<>]|>>)(?:&[-012])?)\\\\\\\\s*(?!\\\\\\\\()([\\\\\\\\--9A-Z_a-z]+)\\\"},{\\\"match\\\":\\\"<|([>^]|>>|\\\\\\\\^\\\\\\\\^)(&[-012])?|[012]([<>]|>>)(&[-012])?\\\",\\\"name\\\":\\\"keyword.operator.redirect.fish\\\"}]},\\\"keywords\\\":{\\\"patterns\\\":[{\\\"captures\\\":{\\\"2\\\":{\\\"name\\\":\\\"keyword.control.fish\\\"}},\\\"match\\\":\\\"(^\\\\\\\\s*|&&\\\\\\\\s*|(?<=\\\\\\\\|)\\\\\\\\s*|\\\\\\\\(\\\\\\\\s*|;\\\\\\\\s*|(?<=\\\\\\\\bwhile\\\\\\\\b)\\\\\\\\s+|(?<=\\\\\\\\bif\\\\\\\\b)\\\\\\\\s+|(?<=\\\\\\\\band\\\\\\\\b)\\\\\\\\s+|(?<=\\\\\\\\bor\\\\\\\\b)\\\\\\\\s+|(?<=\\\\\\\\bnot\\\\\\\\b)\\\\\\\\s+)(?<!\\\\\\\\.)\\\\\\\\b(while|if|and|or|not)\\\\\\\\b(?![!?])\\\"},{\\\"captures\\\":{\\\"2\\\":{\\\"name\\\":\\\"keyword.control.fish\\\"}},\\\"match\\\":\\\"(^\\\\\\\\s*|&&\\\\\\\\s*|(?<=\\\\\\\\|)\\\\\\\\s*|\\\\\\\\(\\\\\\\\s*|;\\\\\\\\s*)(?<!\\\\\\\\.)\\\\\\\\b(function|else|switch|case|for|begin|end|continue|break|return|source|exit|wait)\\\\\\\\b(?![!?])\\\"},{\\\"match\\\":\\\"\\\\\\\\b(in)\\\\\\\\b(?![!?])\\\",\\\"name\\\":\\\"keyword.control.fish\\\"}]},\\\"keywords-subshell\\\":{\\\"patterns\\\":[{\\\"captures\\\":{\\\"2\\\":{\\\"name\\\":\\\"keyword.control.fish\\\"}},\\\"match\\\":\\\"(\\\\\\\\G\\\\\\\\s*|&&\\\\\\\\s*|(?<=\\\\\\\\|)\\\\\\\\s*|\\\\\\\\(\\\\\\\\s*|;\\\\\\\\s*|(?<=\\\\\\\\bwhile\\\\\\\\b)\\\\\\\\s+|(?<=\\\\\\\\bif\\\\\\\\b)\\\\\\\\s+|(?<=\\\\\\\\band\\\\\\\\b)\\\\\\\\s+|(?<=\\\\\\\\bor\\\\\\\\b)\\\\\\\\s+|(?<=\\\\\\\\bnot\\\\\\\\b)\\\\\\\\s+)(?<!\\\\\\\\.)\\\\\\\\b(while|if|and|or|not)\\\\\\\\b(?![!?])\\\"},{\\\"captures\\\":{\\\"2\\\":{\\\"name\\\":\\\"keyword.control.fish\\\"}},\\\"match\\\":\\\"(\\\\\\\\G\\\\\\\\s*|&&\\\\\\\\s*|(?<=\\\\\\\\|)\\\\\\\\s*|\\\\\\\\(\\\\\\\\s*|;\\\\\\\\s*)(?<!\\\\\\\\.)\\\\\\\\b(function|else|switch|case|for|begin|end|continue|break|return|source|exit|wait)\\\\\\\\b(?![!?])\\\"},{\\\"match\\\":\\\"\\\\\\\\b(in)\\\\\\\\b(?![!?])\\\",\\\"name\\\":\\\"keyword.control.fish\\\"}]},\\\"operators\\\":{\\\"patterns\\\":[{\\\"match\\\":\\\"&\\\",\\\"name\\\":\\\"keyword.operator.background.fish\\\"},{\\\"match\\\":\\\"\\\\\\\\*\\\\\\\\*|[*?]\\\",\\\"name\\\":\\\"keyword.operator.glob.fish\\\"}]},\\\"options\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"source.option.fish\\\"}},\\\"match\\\":\\\"\\\\\\\\s(-{1,2}[-0-9A-Z_a-z]+|-\\\\\\\\w)\\\\\\\\b\\\"},\\\"slice\\\":{\\\"begin\\\":\\\"\\\\\\\\[\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.slice.begin.fish\\\"}},\\\"end\\\":\\\"(?<!\\\\\\\\\\\\\\\\)((\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\)*)(])\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"constant.character.escape.string.fish\\\"},\\\"3\\\":{\\\"name\\\":\\\"punctuation.definition.slice.end.fish\\\"}},\\\"name\\\":\\\"meta.embedded.slice.fish variable.interpolation.fish\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#string-double\\\"},{\\\"include\\\":\\\"#string-single\\\"},{\\\"include\\\":\\\"#subshell-bare\\\"},{\\\"include\\\":\\\"#subshell\\\"},{\\\"include\\\":\\\"#variable\\\"},{\\\"include\\\":\\\"#escape\\\"}]},\\\"slice-string-double\\\":{\\\"begin\\\":\\\"\\\\\\\\[\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.slice.begin.fish\\\"}},\\\"end\\\":\\\"(?<!\\\\\\\\\\\\\\\\)((\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\)*)(])\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"constant.character.escape.string.fish\\\"},\\\"3\\\":{\\\"name\\\":\\\"punctuation.definition.slice.end.fish\\\"}},\\\"name\\\":\\\"meta.embedded.slice.fish variable.interpolation.string.fish\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#subshell\\\"},{\\\"include\\\":\\\"#variable\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\([\\\\\\\"$]|$|\\\\\\\\\\\\\\\\)\\\",\\\"name\\\":\\\"constant.character.escape.fish\\\"}]},\\\"string-double\\\":{\\\"begin\\\":\\\"\\\\\\\"\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.fish\\\"}},\\\"end\\\":\\\"\\\\\\\"\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.fish\\\"}},\\\"name\\\":\\\"string.quoted.double.fish\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#subshell\\\"},{\\\"include\\\":\\\"#variable-string-double\\\"},{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\([\\\\\\\"$]|$|\\\\\\\\\\\\\\\\)\\\",\\\"name\\\":\\\"constant.character.escape.fish\\\"}]},\\\"string-single\\\":{\\\"begin\\\":\\\"'\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.fish\\\"}},\\\"end\\\":\\\"'\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.fish\\\"}},\\\"name\\\":\\\"string.quoted.single.fish\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\(['\\\\\\\\\\\\\\\\`])\\\",\\\"name\\\":\\\"constant.character.escape.fish\\\"}]},\\\"subshell\\\":{\\\"begin\\\":\\\"\\\\\\\\$\\\\\\\\(\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.subshell.begin.fish\\\"}},\\\"end\\\":\\\"(?<!\\\\\\\\\\\\\\\\)((\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\)*)(\\\\\\\\))\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"constant.character.escape.string.fish\\\"},\\\"3\\\":{\\\"name\\\":\\\"punctuation.definition.subshell.end.fish\\\"}},\\\"name\\\":\\\"meta.embedded.subshell.fish\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#string-double\\\"},{\\\"include\\\":\\\"#string-single\\\"},{\\\"include\\\":\\\"#comment\\\"},{\\\"include\\\":\\\"#keywords-subshell\\\"},{\\\"include\\\":\\\"#command-subshell\\\"},{\\\"include\\\":\\\"#io-redirection\\\"},{\\\"include\\\":\\\"#operators\\\"},{\\\"include\\\":\\\"#options\\\"},{\\\"include\\\":\\\"#subshell\\\"},{\\\"include\\\":\\\"#variable\\\"},{\\\"include\\\":\\\"#escape\\\"}]},\\\"subshell-bare\\\":{\\\"begin\\\":\\\"\\\\\\\\(\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.subshell.begin.fish\\\"}},\\\"end\\\":\\\"(?<!\\\\\\\\\\\\\\\\)((\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\)*)(\\\\\\\\))\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"constant.character.escape.string.fish\\\"},\\\"3\\\":{\\\"name\\\":\\\"punctuation.definition.subshell.end.fish\\\"}},\\\"name\\\":\\\"meta.embedded.subshell.fish\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#string-double\\\"},{\\\"include\\\":\\\"#string-single\\\"},{\\\"include\\\":\\\"#comment\\\"},{\\\"include\\\":\\\"#keywords-subshell\\\"},{\\\"include\\\":\\\"#command-subshell\\\"},{\\\"include\\\":\\\"#io-redirection\\\"},{\\\"include\\\":\\\"#operators\\\"},{\\\"include\\\":\\\"#options\\\"},{\\\"include\\\":\\\"#subshell-bare\\\"},{\\\"include\\\":\\\"#subshell\\\"},{\\\"include\\\":\\\"#variable\\\"},{\\\"include\\\":\\\"#escape\\\"}]},\\\"variable\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"(\\\\\\\\$)(argv|CMD_DURATION|COLUMNS|fish_bind_mode|fish_color_autosuggestion|fish_color_cancel|fish_color_command|fish_color_comment|fish_color_cwd|fish_color_cwd_root|fish_color_end|fish_color_error|fish_color_escape|fish_color_hg_added|fish_color_hg_clean|fish_color_hg_copied|fish_color_hg_deleted|fish_color_hg_dirty|fish_color_hg_modified|fish_color_hg_renamed|fish_color_hg_unmerged|fish_color_hg_untracked|fish_color_history_current|fish_color_host|fish_color_host_remote|fish_color_match|fish_color_normal|fish_color_operator|fish_color_param|fish_color_quote|fish_color_redirection|fish_color_search_match|fish_color_selection|fish_color_status|fish_color_user|fish_color_valid_path|fish_complete_path|fish_function_path|fish_greeting|fish_key_bindings|fish_pager_color_completion|fish_pager_color_description|fish_pager_color_prefix|fish_pager_color_progress|fish_pid|fish_prompt_hg_status_added|fish_prompt_hg_status_copied|fish_prompt_hg_status_deleted|fish_prompt_hg_status_modified|fish_prompt_hg_status_order|fish_prompt_hg_status_unmerged|fish_prompt_hg_status_untracked|FISH_VERSION|history|hostname|IFS|LINES|pipestatus|status|umask|version)\\\\\\\\b(?=\\\\\\\\[)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.variable.fish\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.language.fish\\\"}},\\\"end\\\":\\\"(?<=])\\\",\\\"name\\\":\\\"variable.language.fish\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#slice\\\"}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.variable.fish\\\"}},\\\"match\\\":\\\"(\\\\\\\\$)(argv|CMD_DURATION|COLUMNS|fish_bind_mode|fish_color_autosuggestion|fish_color_cancel|fish_color_command|fish_color_comment|fish_color_cwd|fish_color_cwd_root|fish_color_end|fish_color_error|fish_color_escape|fish_color_hg_added|fish_color_hg_clean|fish_color_hg_copied|fish_color_hg_deleted|fish_color_hg_dirty|fish_color_hg_modified|fish_color_hg_renamed|fish_color_hg_unmerged|fish_color_hg_untracked|fish_color_history_current|fish_color_host|fish_color_host_remote|fish_color_match|fish_color_normal|fish_color_operator|fish_color_param|fish_color_quote|fish_color_redirection|fish_color_search_match|fish_color_selection|fish_color_status|fish_color_user|fish_color_valid_path|fish_complete_path|fish_function_path|fish_greeting|fish_key_bindings|fish_pager_color_completion|fish_pager_color_description|fish_pager_color_prefix|fish_pager_color_progress|fish_pid|fish_prompt_hg_status_added|fish_prompt_hg_status_copied|fish_prompt_hg_status_deleted|fish_prompt_hg_status_modified|fish_prompt_hg_status_order|fish_prompt_hg_status_unmerged|fish_prompt_hg_status_untracked|FISH_VERSION|history|hostname|IFS|LINES|pipestatus|status|umask|version)\\\\\\\\b\\\",\\\"name\\\":\\\"variable.language.fish\\\"},{\\\"begin\\\":\\\"(\\\\\\\\$)([A-Z_a-z][0-9A-Z_a-z]*)(?=\\\\\\\\[)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.variable.fish\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.other.normal.fish\\\"}},\\\"end\\\":\\\"(?<=])\\\",\\\"name\\\":\\\"variable.other.normal.fish\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#slice\\\"}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.variable.fish\\\"}},\\\"match\\\":\\\"(\\\\\\\\$)[A-Z_a-z][0-9A-Z_a-z]*\\\",\\\"name\\\":\\\"variable.other.normal.fish\\\"}]},\\\"variable-string-double\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"(\\\\\\\\$)(argv|CMD_DURATION|COLUMNS|fish_bind_mode|fish_color_autosuggestion|fish_color_cancel|fish_color_command|fish_color_comment|fish_color_cwd|fish_color_cwd_root|fish_color_end|fish_color_error|fish_color_escape|fish_color_hg_added|fish_color_hg_clean|fish_color_hg_copied|fish_color_hg_deleted|fish_color_hg_dirty|fish_color_hg_modified|fish_color_hg_renamed|fish_color_hg_unmerged|fish_color_hg_untracked|fish_color_history_current|fish_color_host|fish_color_host_remote|fish_color_match|fish_color_normal|fish_color_operator|fish_color_param|fish_color_quote|fish_color_redirection|fish_color_search_match|fish_color_selection|fish_color_status|fish_color_user|fish_color_valid_path|fish_complete_path|fish_function_path|fish_greeting|fish_key_bindings|fish_pager_color_completion|fish_pager_color_description|fish_pager_color_prefix|fish_pager_color_progress|fish_pid|fish_prompt_hg_status_added|fish_prompt_hg_status_copied|fish_prompt_hg_status_deleted|fish_prompt_hg_status_modified|fish_prompt_hg_status_order|fish_prompt_hg_status_unmerged|fish_prompt_hg_status_untracked|FISH_VERSION|history|hostname|IFS|LINES|pipestatus|status|umask|version)\\\\\\\\b(?=\\\\\\\\[)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.variable.fish\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.language.fish\\\"}},\\\"end\\\":\\\"(?<=])\\\",\\\"name\\\":\\\"variable.language.fish\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#slice-string-double\\\"}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.variable.fish\\\"}},\\\"match\\\":\\\"(\\\\\\\\$)(argv|CMD_DURATION|COLUMNS|fish_bind_mode|fish_color_autosuggestion|fish_color_cancel|fish_color_command|fish_color_comment|fish_color_cwd|fish_color_cwd_root|fish_color_end|fish_color_error|fish_color_escape|fish_color_hg_added|fish_color_hg_clean|fish_color_hg_copied|fish_color_hg_deleted|fish_color_hg_dirty|fish_color_hg_modified|fish_color_hg_renamed|fish_color_hg_unmerged|fish_color_hg_untracked|fish_color_history_current|fish_color_host|fish_color_host_remote|fish_color_match|fish_color_normal|fish_color_operator|fish_color_param|fish_color_quote|fish_color_redirection|fish_color_search_match|fish_color_selection|fish_color_status|fish_color_user|fish_color_valid_path|fish_complete_path|fish_function_path|fish_greeting|fish_key_bindings|fish_pager_color_completion|fish_pager_color_description|fish_pager_color_prefix|fish_pager_color_progress|fish_pid|fish_prompt_hg_status_added|fish_prompt_hg_status_copied|fish_prompt_hg_status_deleted|fish_prompt_hg_status_modified|fish_prompt_hg_status_order|fish_prompt_hg_status_unmerged|fish_prompt_hg_status_untracked|FISH_VERSION|history|hostname|IFS|LINES|pipestatus|status|umask|version)\\\\\\\\b\\\",\\\"name\\\":\\\"variable.language.fish\\\"},{\\\"begin\\\":\\\"(\\\\\\\\$)([A-Z_a-z][0-9A-Z_a-z]*)(?=\\\\\\\\[)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.variable.fish\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.other.normal.fish\\\"}},\\\"end\\\":\\\"(?<=])\\\",\\\"name\\\":\\\"variable.other.normal.fish\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#slice-string-double\\\"}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.variable.fish\\\"}},\\\"match\\\":\\\"(\\\\\\\\$)[A-Z_a-z][0-9A-Z_a-z]*\\\",\\\"name\\\":\\\"variable.other.normal.fish\\\"}]}},\\\"scopeName\\\":\\\"source.fish\\\"}\"))\n\nexport default [\nlang\n]\n"],"names":["lang","fish"],"mappings":"AAAA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,8qZAAwjb,CAAC,EAE/lbC,EAAe,CACfD,CACA","x_google_ignoreList":[0]}
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ const e = Object.freeze(
7
+ JSON.parse(
8
+ '{"displayName":"Fluent","name":"fluent","patterns":[{"include":"#comment"},{"include":"#message"},{"include":"#wrong-line"}],"repository":{"attributes":{"begin":"\\\\s*(\\\\.[A-Za-z][-0-9A-Z_a-z]*\\\\s*=\\\\s*)","beginCaptures":{"1":{"name":"support.class.attribute-begin.fluent"}},"end":"^(?=\\\\s*[^.])","patterns":[{"include":"#placeable"}]},"comment":{"match":"^##?#?\\\\s.*$","name":"comment.fluent"},"function-comma":{"match":",","name":"support.function.function-comma.fluent"},"function-named-argument":{"begin":"([0-9A-Za-z]+:)\\\\s*([\\"0-9A-Za-z]+)","beginCaptures":{"1":{"name":"support.function.named-argument.name.fluent"},"2":{"name":"variable.other.named-argument.value.fluent"}},"end":"(?=[),\\\\s])","name":"variable.other.named-argument.fluent"},"function-positional-argument":{"match":"\\\\$[-0-9A-Z_a-z]+","name":"variable.other.function.positional-argument.fluent"},"invalid-placeable-string-missing-end-quote":{"match":"\\"[^\\"]+$","name":"invalid.illegal.wrong-placeable-missing-end-quote.fluent"},"invalid-placeable-wrong-placeable-missing-end":{"match":"([^A-Z}]*|[^-][^>])$\\\\b","name":"invalid.illegal.wrong-placeable-missing-end.fluent"},"message":{"begin":"^(-?[A-Za-z][-0-9A-Z_a-z]*\\\\s*=\\\\s*)","beginCaptures":{"1":{"name":"support.class.message-identifier.fluent"}},"contentName":"string.fluent","end":"^(?=\\\\S)","patterns":[{"include":"#attributes"},{"include":"#placeable"}]},"placeable":{"begin":"(\\\\{)","beginCaptures":{"1":{"name":"keyword.placeable.begin.fluent"}},"contentName":"variable.other.placeable.content.fluent","end":"(})","endCaptures":{"1":{"name":"keyword.placeable.end.fluent"}},"patterns":[{"include":"#placeable-string"},{"include":"#placeable-function"},{"include":"#placeable-reference-or-number"},{"include":"#selector"},{"include":"#invalid-placeable-wrong-placeable-missing-end"},{"include":"#invalid-placeable-string-missing-end-quote"},{"include":"#invalid-placeable-wrong-function-name"}]},"placeable-function":{"begin":"([A-Z][-0-9A-Z_]*\\\\()","beginCaptures":{"1":{"name":"support.function.placeable-function.call.begin.fluent"}},"contentName":"string.placeable-function.fluent","end":"(\\\\))","endCaptures":{"1":{"name":"support.function.placeable-function.call.end.fluent"}},"patterns":[{"include":"#function-comma"},{"include":"#function-positional-argument"},{"include":"#function-named-argument"}]},"placeable-reference-or-number":{"match":"(([-$])[-0-9A-Z_a-z]+|[A-Za-z][-0-9A-Z_a-z]*|[0-9]+)","name":"variable.other.placeable.reference-or-number.fluent"},"placeable-string":{"begin":"(\\")(?=[^\\\\n]*\\")","beginCaptures":{"1":{"name":"variable.other.placeable-string-begin.fluent"}},"contentName":"string.placeable-string-content.fluent","end":"(\\")","endCaptures":{"1":{"name":"variable.other.placeable-string-end.fluent"}}},"selector":{"begin":"(->)","beginCaptures":{"1":{"name":"support.function.selector.begin.fluent"}},"contentName":"string.selector.content.fluent","end":"^(?=\\\\s*})","patterns":[{"include":"#selector-item"}]},"selector-item":{"begin":"(\\\\s*\\\\*?\\\\[)([-0-9A-Z_a-z]+)(]\\\\s*)","beginCaptures":{"1":{"name":"support.function.selector-item.begin.fluent"},"2":{"name":"variable.other.selector-item.begin.fluent"},"3":{"name":"support.function.selector-item.begin.fluent"}},"contentName":"string.selector-item.content.fluent","end":"^(?=(\\\\s*})|(\\\\s*\\\\[)|(\\\\s*\\\\*))","patterns":[{"include":"#placeable"}]},"wrong-line":{"match":".*","name":"invalid.illegal.wrong-line.fluent"}},"scopeName":"source.ftl","aliases":["ftl"]}',
9
+ ),
10
+ ),
11
+ n = [e];
12
+ export { n as default };
13
+ //# sourceMappingURL=fluent-C4IJs8-o.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fluent-C4IJs8-o.js","sources":["../../../../node_modules/@shikijs/langs/dist/fluent.mjs"],"sourcesContent":["const lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"Fluent\\\",\\\"name\\\":\\\"fluent\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#comment\\\"},{\\\"include\\\":\\\"#message\\\"},{\\\"include\\\":\\\"#wrong-line\\\"}],\\\"repository\\\":{\\\"attributes\\\":{\\\"begin\\\":\\\"\\\\\\\\s*(\\\\\\\\.[A-Za-z][-0-9A-Z_a-z]*\\\\\\\\s*=\\\\\\\\s*)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.class.attribute-begin.fluent\\\"}},\\\"end\\\":\\\"^(?=\\\\\\\\s*[^.])\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#placeable\\\"}]},\\\"comment\\\":{\\\"match\\\":\\\"^##?#?\\\\\\\\s.*$\\\",\\\"name\\\":\\\"comment.fluent\\\"},\\\"function-comma\\\":{\\\"match\\\":\\\",\\\",\\\"name\\\":\\\"support.function.function-comma.fluent\\\"},\\\"function-named-argument\\\":{\\\"begin\\\":\\\"([0-9A-Za-z]+:)\\\\\\\\s*([\\\\\\\"0-9A-Za-z]+)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.named-argument.name.fluent\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.other.named-argument.value.fluent\\\"}},\\\"end\\\":\\\"(?=[),\\\\\\\\s])\\\",\\\"name\\\":\\\"variable.other.named-argument.fluent\\\"},\\\"function-positional-argument\\\":{\\\"match\\\":\\\"\\\\\\\\$[-0-9A-Z_a-z]+\\\",\\\"name\\\":\\\"variable.other.function.positional-argument.fluent\\\"},\\\"invalid-placeable-string-missing-end-quote\\\":{\\\"match\\\":\\\"\\\\\\\"[^\\\\\\\"]+$\\\",\\\"name\\\":\\\"invalid.illegal.wrong-placeable-missing-end-quote.fluent\\\"},\\\"invalid-placeable-wrong-placeable-missing-end\\\":{\\\"match\\\":\\\"([^A-Z}]*|[^-][^>])$\\\\\\\\b\\\",\\\"name\\\":\\\"invalid.illegal.wrong-placeable-missing-end.fluent\\\"},\\\"message\\\":{\\\"begin\\\":\\\"^(-?[A-Za-z][-0-9A-Z_a-z]*\\\\\\\\s*=\\\\\\\\s*)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.class.message-identifier.fluent\\\"}},\\\"contentName\\\":\\\"string.fluent\\\",\\\"end\\\":\\\"^(?=\\\\\\\\S)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#attributes\\\"},{\\\"include\\\":\\\"#placeable\\\"}]},\\\"placeable\\\":{\\\"begin\\\":\\\"(\\\\\\\\{)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.placeable.begin.fluent\\\"}},\\\"contentName\\\":\\\"variable.other.placeable.content.fluent\\\",\\\"end\\\":\\\"(})\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.placeable.end.fluent\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#placeable-string\\\"},{\\\"include\\\":\\\"#placeable-function\\\"},{\\\"include\\\":\\\"#placeable-reference-or-number\\\"},{\\\"include\\\":\\\"#selector\\\"},{\\\"include\\\":\\\"#invalid-placeable-wrong-placeable-missing-end\\\"},{\\\"include\\\":\\\"#invalid-placeable-string-missing-end-quote\\\"},{\\\"include\\\":\\\"#invalid-placeable-wrong-function-name\\\"}]},\\\"placeable-function\\\":{\\\"begin\\\":\\\"([A-Z][-0-9A-Z_]*\\\\\\\\()\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.placeable-function.call.begin.fluent\\\"}},\\\"contentName\\\":\\\"string.placeable-function.fluent\\\",\\\"end\\\":\\\"(\\\\\\\\))\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.placeable-function.call.end.fluent\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#function-comma\\\"},{\\\"include\\\":\\\"#function-positional-argument\\\"},{\\\"include\\\":\\\"#function-named-argument\\\"}]},\\\"placeable-reference-or-number\\\":{\\\"match\\\":\\\"(([-$])[-0-9A-Z_a-z]+|[A-Za-z][-0-9A-Z_a-z]*|[0-9]+)\\\",\\\"name\\\":\\\"variable.other.placeable.reference-or-number.fluent\\\"},\\\"placeable-string\\\":{\\\"begin\\\":\\\"(\\\\\\\")(?=[^\\\\\\\\n]*\\\\\\\")\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.placeable-string-begin.fluent\\\"}},\\\"contentName\\\":\\\"string.placeable-string-content.fluent\\\",\\\"end\\\":\\\"(\\\\\\\")\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.placeable-string-end.fluent\\\"}}},\\\"selector\\\":{\\\"begin\\\":\\\"(->)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.selector.begin.fluent\\\"}},\\\"contentName\\\":\\\"string.selector.content.fluent\\\",\\\"end\\\":\\\"^(?=\\\\\\\\s*})\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#selector-item\\\"}]},\\\"selector-item\\\":{\\\"begin\\\":\\\"(\\\\\\\\s*\\\\\\\\*?\\\\\\\\[)([-0-9A-Z_a-z]+)(]\\\\\\\\s*)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"support.function.selector-item.begin.fluent\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.other.selector-item.begin.fluent\\\"},\\\"3\\\":{\\\"name\\\":\\\"support.function.selector-item.begin.fluent\\\"}},\\\"contentName\\\":\\\"string.selector-item.content.fluent\\\",\\\"end\\\":\\\"^(?=(\\\\\\\\s*})|(\\\\\\\\s*\\\\\\\\[)|(\\\\\\\\s*\\\\\\\\*))\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#placeable\\\"}]},\\\"wrong-line\\\":{\\\"match\\\":\\\".*\\\",\\\"name\\\":\\\"invalid.illegal.wrong-line.fluent\\\"}},\\\"scopeName\\\":\\\"source.ftl\\\",\\\"aliases\\\":[\\\"ftl\\\"]}\"))\n\nexport default [\nlang\n]\n"],"names":["lang","fluent"],"mappings":"AAAA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,09GAAo2H,CAAC,EAE34HC,EAAe,CACfD,CACA","x_google_ignoreList":[0]}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Copyright: (c) Myia SAS 2026.
3
+ * This file and its contents are licensed under the AGPLv3 License.
4
+ * Please see the LICENSE file at the root of this repository
5
+ */
6
+ import e from './fortran-free-form-BxgE0vQu.js';
7
+ const n = Object.freeze(
8
+ JSON.parse(
9
+ '{"displayName":"Fortran (Fixed Form)","fileTypes":["f","F","f77","F77","for","FOR"],"injections":{"source.fortran.fixed - ( string | comment )":{"patterns":[{"include":"#line-header"},{"include":"#line-end-comment"}]}},"name":"fortran-fixed-form","patterns":[{"include":"#comments"},{"begin":"(?i)^(?=.{5}|(?<!^)\\\\t)\\\\s*(?:([0-9]{1,5})\\\\s+)?(format)\\\\b","beginCaptures":{"1":{"name":"constant.numeric.fortran"},"2":{"name":"keyword.control.format.fortran"}},"end":"(?=^(?![^\\\\n!#]{5}\\\\S))","name":"meta.statement.IO.fortran","patterns":[{"include":"#comments"},{"include":"#line-header"},{"match":"!.*$","name":"comment.line.fortran"},{"include":"source.fortran.free#string-constant"},{"include":"source.fortran.free#numeric-constant"},{"include":"source.fortran.free#operators"},{"include":"source.fortran.free#format-parentheses"}]},{"include":"#line-header"},{"include":"source.fortran.free"}],"repository":{"comments":{"patterns":[{"begin":"^[*Cc]","end":"\\\\n","name":"comment.line.fortran"},{"begin":"^ *!","end":"\\\\n","name":"comment.line.fortran"}]},"line-end-comment":{"begin":"(?<=^.{72})(?!\\\\n)","end":"(?=\\\\n)","name":"comment.line-end.fortran"},"line-header":{"captures":{"1":{"name":"constant.numeric.fortran"},"2":{"name":"keyword.line-continuation-operator.fortran"},"3":{"name":"source.fortran.free"},"4":{"name":"invalid.error.fortran"}},"match":"^(?!\\\\s*[!#])(?:([ \\\\d]{5} )|( {5}.)|(\\\\t)|(.{1,5}))"}},"scopeName":"source.fortran.fixed","embeddedLangs":["fortran-free-form"],"aliases":["f","for","f77"]}',
10
+ ),
11
+ ),
12
+ t = [...e, n];
13
+ export { t as default };
14
+ //# sourceMappingURL=fortran-fixed-form-CkoXwp7k.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fortran-fixed-form-CkoXwp7k.js","sources":["../../../../node_modules/@shikijs/langs/dist/fortran-fixed-form.mjs"],"sourcesContent":["import fortran_free_form from './fortran-free-form.mjs'\n\nconst lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"Fortran (Fixed Form)\\\",\\\"fileTypes\\\":[\\\"f\\\",\\\"F\\\",\\\"f77\\\",\\\"F77\\\",\\\"for\\\",\\\"FOR\\\"],\\\"injections\\\":{\\\"source.fortran.fixed - ( string | comment )\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#line-header\\\"},{\\\"include\\\":\\\"#line-end-comment\\\"}]}},\\\"name\\\":\\\"fortran-fixed-form\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#comments\\\"},{\\\"begin\\\":\\\"(?i)^(?=.{5}|(?<!^)\\\\\\\\t)\\\\\\\\s*(?:([0-9]{1,5})\\\\\\\\s+)?(format)\\\\\\\\b\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"constant.numeric.fortran\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.control.format.fortran\\\"}},\\\"end\\\":\\\"(?=^(?![^\\\\\\\\n!#]{5}\\\\\\\\S))\\\",\\\"name\\\":\\\"meta.statement.IO.fortran\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#comments\\\"},{\\\"include\\\":\\\"#line-header\\\"},{\\\"match\\\":\\\"!.*$\\\",\\\"name\\\":\\\"comment.line.fortran\\\"},{\\\"include\\\":\\\"source.fortran.free#string-constant\\\"},{\\\"include\\\":\\\"source.fortran.free#numeric-constant\\\"},{\\\"include\\\":\\\"source.fortran.free#operators\\\"},{\\\"include\\\":\\\"source.fortran.free#format-parentheses\\\"}]},{\\\"include\\\":\\\"#line-header\\\"},{\\\"include\\\":\\\"source.fortran.free\\\"}],\\\"repository\\\":{\\\"comments\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"^[*Cc]\\\",\\\"end\\\":\\\"\\\\\\\\n\\\",\\\"name\\\":\\\"comment.line.fortran\\\"},{\\\"begin\\\":\\\"^ *!\\\",\\\"end\\\":\\\"\\\\\\\\n\\\",\\\"name\\\":\\\"comment.line.fortran\\\"}]},\\\"line-end-comment\\\":{\\\"begin\\\":\\\"(?<=^.{72})(?!\\\\\\\\n)\\\",\\\"end\\\":\\\"(?=\\\\\\\\n)\\\",\\\"name\\\":\\\"comment.line-end.fortran\\\"},\\\"line-header\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"constant.numeric.fortran\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.line-continuation-operator.fortran\\\"},\\\"3\\\":{\\\"name\\\":\\\"source.fortran.free\\\"},\\\"4\\\":{\\\"name\\\":\\\"invalid.error.fortran\\\"}},\\\"match\\\":\\\"^(?!\\\\\\\\s*[!#])(?:([ \\\\\\\\d]{5} )|( {5}.)|(\\\\\\\\t)|(.{1,5}))\\\"}},\\\"scopeName\\\":\\\"source.fortran.fixed\\\",\\\"embeddedLangs\\\":[\\\"fortran-free-form\\\"],\\\"aliases\\\":[\\\"f\\\",\\\"for\\\",\\\"f77\\\"]}\"))\n\nexport default [\n...fortran_free_form,\nlang\n]\n"],"names":["lang","fortranFixedForm","fortran_free_form"],"mappings":"+CAEA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,6gDAAutD,CAAC,EAE9vDC,EAAe,CACf,GAAGC,EACHF,CACA","x_google_ignoreList":[0]}