@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.
- package/README.md +94 -116
- package/dist/application/babel-playwright-tracer-plugin/index.js +16 -2
- package/dist/application/commander-cli-adapter/commander-cli-adapter.d.ts +24 -0
- package/dist/application/commander-cli-adapter/commander-cli-adapter.js +133 -0
- package/dist/application/heal-config/index.d.ts +1 -1
- package/dist/application/heal-config/registry.js +2 -1
- package/dist/application/heal-config/types.d.ts +187 -6
- package/dist/application/playwright-fixture/index.js +247 -48
- package/dist/application/playwright-fixture/wire-all-pages.d.ts +37 -0
- package/dist/application/playwright-fixture/wire-all-pages.js +71 -0
- package/dist/application/trace-event-recorder-runtime/index.d.ts +5 -0
- package/dist/application/trace-event-recorder-runtime/index.js +11 -1
- package/dist/bin/heal-tracer.d.ts +7 -0
- package/dist/bin/heal-tracer.js +16 -0
- package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.d.ts +11 -0
- package/dist/domain/code-hook-injector/service/statement-analysis/async-enclosing-function-detector.js +21 -0
- package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.d.ts +10 -0
- package/dist/domain/code-hook-injector/service/trace-hook/preprocess-call.js +17 -0
- package/dist/domain/persistence/execution-history-schema.d.ts +112 -0
- package/dist/domain/persistence/execution-history-schema.js +10 -0
- package/dist/domain/persistence/index.d.ts +7 -0
- package/dist/domain/persistence/index.js +10 -0
- package/dist/domain/persistence/test-status.d.ts +6 -0
- package/dist/domain/persistence/test-status.js +7 -0
- package/dist/domain/trace-event-recorder/model/console-trace-schema.d.ts +36 -0
- package/dist/domain/trace-event-recorder/model/console-trace-schema.js +7 -0
- package/dist/domain/trace-event-recorder/model/global-names.d.ts +1 -0
- package/dist/domain/trace-event-recorder/model/global-names.js +9 -1
- package/dist/domain/trace-event-recorder/model/network-trace-schema.d.ts +105 -0
- package/dist/domain/trace-event-recorder/model/network-trace-schema.js +7 -0
- package/dist/domain/trace-event-recorder/model/statement-trace-schema.d.ts +68 -2
- package/dist/domain/trace-event-recorder/model/statement-trace-schema.js +1 -1
- package/dist/domain/trace-event-recorder/model/trace-schema.d.ts +1 -0
- package/dist/domain/trace-event-recorder/service/projectors/statement-projector.d.ts +10 -1
- package/dist/domain/trace-event-recorder/service/projectors/statement-projector.js +39 -3
- package/dist/domain/trace-event-recorder/service/serializers/error-serializer.js +28 -10
- package/dist/domain/trace-event-recorder/service/serializers/index.d.ts +7 -0
- package/dist/domain/trace-event-recorder/service/serializers/index.js +13 -0
- package/dist/domain/trace-event-recorder/service/trace-event-recorder.d.ts +25 -0
- package/dist/domain/trace-event-recorder/service/trace-event-recorder.js +33 -0
- package/dist/index.d.ts +1 -1
- package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.d.ts +20 -0
- package/dist/infrastructure/artifact-summary-printer/artifact-summary-printer.js +24 -0
- package/dist/infrastructure/artifact-summary-printer/index.d.ts +7 -0
- package/dist/infrastructure/artifact-summary-printer/index.js +10 -0
- package/dist/infrastructure/heal-reporter/crash-error-classifier.d.ts +13 -0
- package/dist/infrastructure/heal-reporter/crash-error-classifier.js +65 -0
- package/dist/infrastructure/heal-reporter/failing-statement-finder.d.ts +14 -0
- package/dist/infrastructure/heal-reporter/failing-statement-finder.js +118 -0
- package/dist/infrastructure/heal-reporter/heal-tracer-reporter.d.ts +134 -0
- package/dist/infrastructure/heal-reporter/heal-tracer-reporter.js +537 -0
- package/dist/infrastructure/heal-reporter/index.d.ts +14 -0
- package/dist/infrastructure/heal-reporter/index.js +23 -0
- package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.d.ts +8 -0
- package/dist/infrastructure/heal-reporter/ndjson-tail-inspector.js +75 -0
- package/dist/infrastructure/heal-traces-layout/execution-id-resolver.d.ts +14 -0
- package/dist/infrastructure/heal-traces-layout/execution-id-resolver.js +52 -0
- package/dist/infrastructure/heal-traces-layout/heal-traces-layout.d.ts +37 -0
- package/dist/infrastructure/heal-traces-layout/heal-traces-layout.js +116 -0
- package/dist/infrastructure/heal-traces-layout/index.d.ts +7 -0
- package/dist/infrastructure/heal-traces-layout/index.js +14 -0
- package/dist/infrastructure/local-viewer-adapter/discover-traces.d.ts +70 -0
- package/dist/infrastructure/local-viewer-adapter/discover-traces.js +280 -0
- package/dist/infrastructure/local-viewer-adapter/local-viewer-server.d.ts +44 -0
- package/dist/infrastructure/local-viewer-adapter/local-viewer-server.js +398 -0
- package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.d.ts +25 -0
- package/dist/infrastructure/local-viewer-adapter/ndjson-trace-loader.js +74 -0
- package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.d.ts +40 -0
- package/dist/infrastructure/playwright-console-capture-adapter/console-capture-session.js +243 -0
- package/dist/infrastructure/playwright-console-capture-adapter/index.d.ts +7 -0
- package/dist/infrastructure/playwright-console-capture-adapter/index.js +20 -0
- package/dist/infrastructure/playwright-locator-screenshot-adapter/assertion-wrapper.js +22 -9
- package/dist/infrastructure/playwright-locator-screenshot-adapter/index.d.ts +1 -1
- package/dist/infrastructure/playwright-locator-screenshot-adapter/index.js +2 -2
- package/dist/infrastructure/playwright-locator-screenshot-adapter/locator-patch.js +19 -7
- package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.d.ts +2 -2
- package/dist/infrastructure/playwright-locator-screenshot-adapter/overlay-helpers.js +22 -9
- package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.d.ts +14 -3
- package/dist/infrastructure/playwright-locator-screenshot-adapter/screenshot-capture-session.js +94 -25
- package/dist/infrastructure/playwright-network-capture-adapter/body-preview.d.ts +43 -0
- package/dist/infrastructure/playwright-network-capture-adapter/body-preview.js +107 -0
- package/dist/infrastructure/playwright-network-capture-adapter/index.d.ts +10 -0
- package/dist/infrastructure/playwright-network-capture-adapter/index.js +27 -0
- package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.d.ts +55 -0
- package/dist/infrastructure/playwright-network-capture-adapter/network-capture-session.js +630 -0
- package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.d.ts +54 -0
- package/dist/infrastructure/playwright-network-capture-adapter/network-coalescer.js +96 -0
- package/dist/infrastructure/playwright-network-capture-adapter/redaction.d.ts +14 -0
- package/dist/infrastructure/playwright-network-capture-adapter/redaction.js +44 -0
- package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.d.ts +6 -1
- package/dist/infrastructure/playwright-test-context-adapter/playwright-test-context-adapter.js +5 -1
- package/dist/infrastructure/stdout-capture-adapter/stdout-capture-session.js +1 -1
- package/dist/util/logger.d.ts +17 -0
- package/dist/util/logger.js +60 -0
- package/dist/util/with-timeout.d.ts +6 -0
- package/dist/util/with-timeout.js +33 -0
- package/package.json +20 -3
- package/tracer-viewer-bundle/assets/abap-BdImnpbu.js +13 -0
- package/tracer-viewer-bundle/assets/abap-BdImnpbu.js.map +1 -0
- package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js +13 -0
- package/tracer-viewer-bundle/assets/actionscript-3-CoDkCxhg.js.map +1 -0
- package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js +13 -0
- package/tracer-viewer-bundle/assets/ada-bCR0ucgS.js.map +1 -0
- package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js +12 -0
- package/tracer-viewer-bundle/assets/andromeeda-C4gqWexZ.js.map +1 -0
- package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js +41 -0
- package/tracer-viewer-bundle/assets/angular-html-DA-rfuFy.js.map +1 -0
- package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js +30 -0
- package/tracer-viewer-bundle/assets/angular-ts-BrjP3tb8.js.map +1 -0
- package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js +13 -0
- package/tracer-viewer-bundle/assets/apache-Pmp26Uib.js.map +1 -0
- package/tracer-viewer-bundle/assets/apex-D8_7TLub.js +13 -0
- package/tracer-viewer-bundle/assets/apex-D8_7TLub.js.map +1 -0
- package/tracer-viewer-bundle/assets/apl-CORt7UWP.js +19 -0
- package/tracer-viewer-bundle/assets/apl-CORt7UWP.js.map +1 -0
- package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js +13 -0
- package/tracer-viewer-bundle/assets/applescript-Co6uUVPk.js.map +1 -0
- package/tracer-viewer-bundle/assets/ara-BRHolxvo.js +13 -0
- package/tracer-viewer-bundle/assets/ara-BRHolxvo.js.map +1 -0
- package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js +13 -0
- package/tracer-viewer-bundle/assets/asciidoc-Ve4PFQV2.js.map +1 -0
- package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js +13 -0
- package/tracer-viewer-bundle/assets/asm-D_Q5rh1f.js.map +1 -0
- package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js +19 -0
- package/tracer-viewer-bundle/assets/astro-HNnZUWAn.js.map +1 -0
- package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js +12 -0
- package/tracer-viewer-bundle/assets/aurora-x-D-2ljcwZ.js.map +1 -0
- package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js +13 -0
- package/tracer-viewer-bundle/assets/awk-DMzUqQB5.js.map +1 -0
- package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js +12 -0
- package/tracer-viewer-bundle/assets/ayu-dark-DYE7WIF3.js.map +1 -0
- package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js +12 -0
- package/tracer-viewer-bundle/assets/ayu-light-BA47KaF1.js.map +1 -0
- package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js +12 -0
- package/tracer-viewer-bundle/assets/ayu-mirage-32ctXXKs.js.map +1 -0
- package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js +13 -0
- package/tracer-viewer-bundle/assets/ballerina-BFfxhgS-.js.map +1 -0
- package/tracer-viewer-bundle/assets/bat-BkioyH1T.js +13 -0
- package/tracer-viewer-bundle/assets/bat-BkioyH1T.js.map +1 -0
- package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js +13 -0
- package/tracer-viewer-bundle/assets/beancount-k_qm7-4y.js.map +1 -0
- package/tracer-viewer-bundle/assets/berry-uYugtg8r.js +13 -0
- package/tracer-viewer-bundle/assets/berry-uYugtg8r.js.map +1 -0
- package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js +13 -0
- package/tracer-viewer-bundle/assets/bibtex-CHM0blh-.js.map +1 -0
- package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js +13 -0
- package/tracer-viewer-bundle/assets/bicep-Bmn6On1c.js.map +1 -0
- package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js +13 -0
- package/tracer-viewer-bundle/assets/bird2-BIv1doCn.js.map +1 -0
- package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js +21 -0
- package/tracer-viewer-bundle/assets/blade-BjGOyj-B.js.map +1 -0
- package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js +14 -0
- package/tracer-viewer-bundle/assets/bsl-BO_Y6i37.js.map +1 -0
- package/tracer-viewer-bundle/assets/c-BIGW1oBm.js +13 -0
- package/tracer-viewer-bundle/assets/c-BIGW1oBm.js.map +1 -0
- package/tracer-viewer-bundle/assets/c3-eo99z4R2.js +13 -0
- package/tracer-viewer-bundle/assets/c3-eo99z4R2.js.map +1 -0
- package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js +13 -0
- package/tracer-viewer-bundle/assets/cadence-Bv_4Rxtq.js.map +1 -0
- package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js +14 -0
- package/tracer-viewer-bundle/assets/cairo-KRGpt6FW.js.map +1 -0
- package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js +12 -0
- package/tracer-viewer-bundle/assets/catppuccin-frappe-DFWUc33u.js.map +1 -0
- package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js +12 -0
- package/tracer-viewer-bundle/assets/catppuccin-latte-C9dUb6Cb.js.map +1 -0
- package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js +12 -0
- package/tracer-viewer-bundle/assets/catppuccin-macchiato-DQyhUUbL.js.map +1 -0
- package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js +12 -0
- package/tracer-viewer-bundle/assets/catppuccin-mocha-D87Tk5Gz.js.map +1 -0
- package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js +13 -0
- package/tracer-viewer-bundle/assets/clarity-D53aC0YG.js.map +1 -0
- package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js +13 -0
- package/tracer-viewer-bundle/assets/clojure-P80f7IUj.js.map +1 -0
- package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js +13 -0
- package/tracer-viewer-bundle/assets/cmake-D1j8_8rp.js.map +1 -0
- package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js +17 -0
- package/tracer-viewer-bundle/assets/cobol-nBiQ_Alo.js.map +1 -0
- package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js +13 -0
- package/tracer-viewer-bundle/assets/codeowners-Bp6g37R7.js.map +1 -0
- package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js +13 -0
- package/tracer-viewer-bundle/assets/codeql-DsOJ9woJ.js.map +1 -0
- package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js +14 -0
- package/tracer-viewer-bundle/assets/coffee-Ch7k5sss.js.map +1 -0
- package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js +13 -0
- package/tracer-viewer-bundle/assets/common-lisp-Cg-RD9OK.js.map +1 -0
- package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js +13 -0
- package/tracer-viewer-bundle/assets/coq-DkFqJrB1.js.map +1 -0
- package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js +23 -0
- package/tracer-viewer-bundle/assets/cpp-CofmeUqb.js.map +1 -0
- package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js +19 -0
- package/tracer-viewer-bundle/assets/crystal-DNxU26gB.js.map +1 -0
- package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js +13 -0
- package/tracer-viewer-bundle/assets/csharp-COcwbKMJ.js.map +1 -0
- package/tracer-viewer-bundle/assets/css-CLj8gQPS.js +13 -0
- package/tracer-viewer-bundle/assets/css-CLj8gQPS.js.map +1 -0
- package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js +13 -0
- package/tracer-viewer-bundle/assets/csv-fuZLfV_i.js.map +1 -0
- package/tracer-viewer-bundle/assets/cue-D82EKSYY.js +13 -0
- package/tracer-viewer-bundle/assets/cue-D82EKSYY.js.map +1 -0
- package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js +13 -0
- package/tracer-viewer-bundle/assets/cypher-COkxafJQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/d-85-TOEBH.js +13 -0
- package/tracer-viewer-bundle/assets/d-85-TOEBH.js.map +1 -0
- package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js +12 -0
- package/tracer-viewer-bundle/assets/dark-plus-C3mMm8J8.js.map +1 -0
- package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js +13 -0
- package/tracer-viewer-bundle/assets/dart-bE4Kk8sk.js.map +1 -0
- package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js +13 -0
- package/tracer-viewer-bundle/assets/dax-CEL-wOlO.js.map +1 -0
- package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js +13 -0
- package/tracer-viewer-bundle/assets/desktop-BmXAJ9_W.js.map +1 -0
- package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js +13 -0
- package/tracer-viewer-bundle/assets/diff-D97Zzqfu.js.map +1 -0
- package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js +13 -0
- package/tracer-viewer-bundle/assets/docker-BcOcwvcX.js.map +1 -0
- package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js +13 -0
- package/tracer-viewer-bundle/assets/dotenv-Da5cRb03.js.map +1 -0
- package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js +12 -0
- package/tracer-viewer-bundle/assets/dracula-BzJJZx-M.js.map +1 -0
- package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js +12 -0
- package/tracer-viewer-bundle/assets/dracula-soft-BXkSAIEj.js.map +1 -0
- package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js +13 -0
- package/tracer-viewer-bundle/assets/dream-maker-BtqSS_iP.js.map +1 -0
- package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js +18 -0
- package/tracer-viewer-bundle/assets/edge-FbVlp4U3.js.map +1 -0
- package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js +16 -0
- package/tracer-viewer-bundle/assets/elixir-CkH2-t6x.js.map +1 -0
- package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js +15 -0
- package/tracer-viewer-bundle/assets/elm-DbKCFpqz.js.map +1 -0
- package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js +13 -0
- package/tracer-viewer-bundle/assets/emacs-lisp-CXvaQtF9.js.map +1 -0
- package/tracer-viewer-bundle/assets/erb-BYCe7drp.js +32 -0
- package/tracer-viewer-bundle/assets/erb-BYCe7drp.js.map +1 -0
- package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js +14 -0
- package/tracer-viewer-bundle/assets/erlang-DsQrWhSR.js.map +1 -0
- package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js +12 -0
- package/tracer-viewer-bundle/assets/everforest-dark-BgDCqdQA.js.map +1 -0
- package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js +12 -0
- package/tracer-viewer-bundle/assets/everforest-light-C8M2exoo.js.map +1 -0
- package/tracer-viewer-bundle/assets/favicon-DRSNNJwn.svg +3 -0
- package/tracer-viewer-bundle/assets/fennel-BYunw83y.js +13 -0
- package/tracer-viewer-bundle/assets/fennel-BYunw83y.js.map +1 -0
- package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js +13 -0
- package/tracer-viewer-bundle/assets/fish-BvzEVeQv.js.map +1 -0
- package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js +13 -0
- package/tracer-viewer-bundle/assets/fluent-C4IJs8-o.js.map +1 -0
- package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js +14 -0
- package/tracer-viewer-bundle/assets/fortran-fixed-form-CkoXwp7k.js.map +1 -0
- package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js +13 -0
- package/tracer-viewer-bundle/assets/fortran-free-form-BxgE0vQu.js.map +1 -0
- package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js +14 -0
- package/tracer-viewer-bundle/assets/fsharp-CXgrBDvD.js.map +1 -0
- package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js +15 -0
- package/tracer-viewer-bundle/assets/gdresource-BOOCDP_w.js.map +1 -0
- package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js +13 -0
- package/tracer-viewer-bundle/assets/gdscript-C5YyOfLZ.js.map +1 -0
- package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js +13 -0
- package/tracer-viewer-bundle/assets/gdshader-DkwncUOv.js.map +1 -0
- package/tracer-viewer-bundle/assets/genie-D0YGMca9.js +13 -0
- package/tracer-viewer-bundle/assets/genie-D0YGMca9.js.map +1 -0
- package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js +13 -0
- package/tracer-viewer-bundle/assets/gherkin-DyxjwDmM.js.map +1 -0
- package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js +14 -0
- package/tracer-viewer-bundle/assets/git-commit-F4YmCXRG.js.map +1 -0
- package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js +14 -0
- package/tracer-viewer-bundle/assets/git-rebase-r7XF79zn.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js +12 -0
- package/tracer-viewer-bundle/assets/github-dark-DHJKELXO.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js +12 -0
- package/tracer-viewer-bundle/assets/github-dark-default-Cuk6v7N8.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js +12 -0
- package/tracer-viewer-bundle/assets/github-dark-dimmed-DH5Ifo-i.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js +12 -0
- package/tracer-viewer-bundle/assets/github-dark-high-contrast-E3gJ1_iC.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js +12 -0
- package/tracer-viewer-bundle/assets/github-light-DAi9KRSo.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js +12 -0
- package/tracer-viewer-bundle/assets/github-light-default-D7oLnXFd.js.map +1 -0
- package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js +12 -0
- package/tracer-viewer-bundle/assets/github-light-high-contrast-BfjtVDDH.js.map +1 -0
- package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js +13 -0
- package/tracer-viewer-bundle/assets/gleam-BspZqrRM.js.map +1 -0
- package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js +17 -0
- package/tracer-viewer-bundle/assets/glimmer-js-ByusRIyA.js.map +1 -0
- package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js +17 -0
- package/tracer-viewer-bundle/assets/glimmer-ts-BfAWNZQY.js.map +1 -0
- package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js +14 -0
- package/tracer-viewer-bundle/assets/glsl-DplSGwfg.js.map +1 -0
- package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js +13 -0
- package/tracer-viewer-bundle/assets/gn-n2N0HUVH.js.map +1 -0
- package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js +13 -0
- package/tracer-viewer-bundle/assets/gnuplot-DdkO51Og.js.map +1 -0
- package/tracer-viewer-bundle/assets/go-C27-OAKa.js +13 -0
- package/tracer-viewer-bundle/assets/go-C27-OAKa.js.map +1 -0
- package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js +17 -0
- package/tracer-viewer-bundle/assets/graphql-ChdNCCLP.js.map +1 -0
- package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js +13 -0
- package/tracer-viewer-bundle/assets/groovy-gcz8RCvz.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-hard-CFHQjOhq.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-medium-GsRaNv29.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-dark-soft-CVdnzihN.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-hard-CH1njM8p.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-medium-DRw_LuNl.js.map +1 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js +12 -0
- package/tracer-viewer-bundle/assets/gruvbox-light-soft-hJgmCMqR.js.map +1 -0
- package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js +17 -0
- package/tracer-viewer-bundle/assets/hack-i7_Ulhet.js.map +1 -0
- package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js +15 -0
- package/tracer-viewer-bundle/assets/haml-D5jkg6IW.js.map +1 -0
- package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js +17 -0
- package/tracer-viewer-bundle/assets/handlebars-BpdQsYii.js.map +1 -0
- package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js +13 -0
- package/tracer-viewer-bundle/assets/haskell-Df6bDoY_.js.map +1 -0
- package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js +13 -0
- package/tracer-viewer-bundle/assets/haxe-CzTSHFRz.js.map +1 -0
- package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js +13 -0
- package/tracer-viewer-bundle/assets/hcl-BWvSN4gD.js.map +1 -0
- package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js +13 -0
- package/tracer-viewer-bundle/assets/hjson-D5-asLiD.js.map +1 -0
- package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js +13 -0
- package/tracer-viewer-bundle/assets/hlsl-D3lLCCz7.js.map +1 -0
- package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js +12 -0
- package/tracer-viewer-bundle/assets/horizon-BUw7H-hv.js.map +1 -0
- package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js +12 -0
- package/tracer-viewer-bundle/assets/horizon-bright-CUuTKBJd.js.map +1 -0
- package/tracer-viewer-bundle/assets/houston-DnULxvSX.js +12 -0
- package/tracer-viewer-bundle/assets/houston-DnULxvSX.js.map +1 -0
- package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js +16 -0
- package/tracer-viewer-bundle/assets/html-derivative-DlHx6ybY.js.map +1 -0
- package/tracer-viewer-bundle/assets/html-pp8916En.js +15 -0
- package/tracer-viewer-bundle/assets/html-pp8916En.js.map +1 -0
- package/tracer-viewer-bundle/assets/http-jrhK8wxY.js +22 -0
- package/tracer-viewer-bundle/assets/http-jrhK8wxY.js.map +1 -0
- package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js +21 -0
- package/tracer-viewer-bundle/assets/hurl-irOxFIW8.js.map +1 -0
- package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js +14 -0
- package/tracer-viewer-bundle/assets/hxml-Bvhsp5Yf.js.map +1 -0
- package/tracer-viewer-bundle/assets/hy-DFXneXwc.js +13 -0
- package/tracer-viewer-bundle/assets/hy-DFXneXwc.js.map +1 -0
- package/tracer-viewer-bundle/assets/imba-DGztddWO.js +13 -0
- package/tracer-viewer-bundle/assets/imba-DGztddWO.js.map +1 -0
- package/tracer-viewer-bundle/assets/index-CIRSNBm6.css +4792 -0
- package/tracer-viewer-bundle/assets/index-DS0dKIBi.js +36912 -0
- package/tracer-viewer-bundle/assets/index-DS0dKIBi.js.map +1 -0
- package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js +13 -0
- package/tracer-viewer-bundle/assets/ini-BEwlwnbL.js.map +1 -0
- package/tracer-viewer-bundle/assets/java-CylS5w8V.js +13 -0
- package/tracer-viewer-bundle/assets/java-CylS5w8V.js.map +1 -0
- package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js +13 -0
- package/tracer-viewer-bundle/assets/javascript-wDzz0qaB.js.map +1 -0
- package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js +22 -0
- package/tracer-viewer-bundle/assets/jinja-f2NsQr07.js.map +1 -0
- package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js +14 -0
- package/tracer-viewer-bundle/assets/jison-wvAkD_A8.js.map +1 -0
- package/tracer-viewer-bundle/assets/json-Cp-IABpG.js +13 -0
- package/tracer-viewer-bundle/assets/json-Cp-IABpG.js.map +1 -0
- package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js +13 -0
- package/tracer-viewer-bundle/assets/json5-C9tS-k6U.js.map +1 -0
- package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js +13 -0
- package/tracer-viewer-bundle/assets/jsonc-Des-eS-w.js.map +1 -0
- package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js +13 -0
- package/tracer-viewer-bundle/assets/jsonl-DcaNXYhu.js.map +1 -0
- package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js +13 -0
- package/tracer-viewer-bundle/assets/jsonnet-DFQXde-d.js.map +1 -0
- package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js +13 -0
- package/tracer-viewer-bundle/assets/jssm-C2t-YnRu.js.map +1 -0
- package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js +13 -0
- package/tracer-viewer-bundle/assets/jsx-g9-lgVsj.js.map +1 -0
- package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js +21 -0
- package/tracer-viewer-bundle/assets/julia-CxzCAyBv.js.map +1 -0
- package/tracer-viewer-bundle/assets/just-VxiPbLrw.js +34 -0
- package/tracer-viewer-bundle/assets/just-VxiPbLrw.js.map +1 -0
- package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js +12 -0
- package/tracer-viewer-bundle/assets/kanagawa-dragon-CkXjmgJE.js.map +1 -0
- package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js +12 -0
- package/tracer-viewer-bundle/assets/kanagawa-lotus-CfQXZHmo.js.map +1 -0
- package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js +12 -0
- package/tracer-viewer-bundle/assets/kanagawa-wave-DWedfzmr.js.map +1 -0
- package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js +13 -0
- package/tracer-viewer-bundle/assets/kdl-DV7GczEv.js.map +1 -0
- package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js +13 -0
- package/tracer-viewer-bundle/assets/kotlin-BdnUsdx6.js.map +1 -0
- package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js +13 -0
- package/tracer-viewer-bundle/assets/kusto-wEQ09or8.js.map +1 -0
- package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js +12 -0
- package/tracer-viewer-bundle/assets/laserwave-DUszq2jm.js.map +1 -0
- package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js +15 -0
- package/tracer-viewer-bundle/assets/latex-CWtU0Tv5.js.map +1 -0
- package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js +13 -0
- package/tracer-viewer-bundle/assets/lean-BZvkOJ9d.js.map +1 -0
- package/tracer-viewer-bundle/assets/less-B1dDrJ26.js +13 -0
- package/tracer-viewer-bundle/assets/less-B1dDrJ26.js.map +1 -0
- package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js +12 -0
- package/tracer-viewer-bundle/assets/light-plus-B7mTdjB0.js.map +1 -0
- package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js +17 -0
- package/tracer-viewer-bundle/assets/liquid-C0sCDyMI.js.map +1 -0
- package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js +13 -0
- package/tracer-viewer-bundle/assets/llvm-DjAJT7YJ.js.map +1 -0
- package/tracer-viewer-bundle/assets/log-2UxHyX5q.js +13 -0
- package/tracer-viewer-bundle/assets/log-2UxHyX5q.js.map +1 -0
- package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js +13 -0
- package/tracer-viewer-bundle/assets/logo-BtOb2qkB.js.map +1 -0
- package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js +14 -0
- package/tracer-viewer-bundle/assets/lua-BaeVxFsk.js.map +1 -0
- package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js +13 -0
- package/tracer-viewer-bundle/assets/luau-C-HG3fhB.js.map +1 -0
- package/tracer-viewer-bundle/assets/make-CHLpvVh8.js +13 -0
- package/tracer-viewer-bundle/assets/make-CHLpvVh8.js.map +1 -0
- package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js +13 -0
- package/tracer-viewer-bundle/assets/markdown-Cvjx9yec.js.map +1 -0
- package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js +17 -0
- package/tracer-viewer-bundle/assets/marko-DjSrsDqO.js.map +1 -0
- package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js +12 -0
- package/tracer-viewer-bundle/assets/material-theme-D5KoaKCx.js.map +1 -0
- package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js +12 -0
- package/tracer-viewer-bundle/assets/material-theme-darker-BfHTSMKl.js.map +1 -0
- package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js +12 -0
- package/tracer-viewer-bundle/assets/material-theme-lighter-B0m2ddpp.js.map +1 -0
- package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js +12 -0
- package/tracer-viewer-bundle/assets/material-theme-ocean-CyktbL80.js.map +1 -0
- package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js +12 -0
- package/tracer-viewer-bundle/assets/material-theme-palenight-Csfq5Kiy.js.map +1 -0
- package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js +13 -0
- package/tracer-viewer-bundle/assets/matlab-D7o27uSR.js.map +1 -0
- package/tracer-viewer-bundle/assets/mdc-DTYItulj.js +19 -0
- package/tracer-viewer-bundle/assets/mdc-DTYItulj.js.map +1 -0
- package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js +13 -0
- package/tracer-viewer-bundle/assets/mdx-Cmh6b_Ma.js.map +1 -0
- package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js +13 -0
- package/tracer-viewer-bundle/assets/mermaid-mWjccvbQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js +12 -0
- package/tracer-viewer-bundle/assets/min-dark-CafNBF8u.js.map +1 -0
- package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js +12 -0
- package/tracer-viewer-bundle/assets/min-light-CTRr51gU.js.map +1 -0
- package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js +13 -0
- package/tracer-viewer-bundle/assets/mipsasm-CKIfxQSi.js.map +1 -0
- package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js +13 -0
- package/tracer-viewer-bundle/assets/mojo-rZm6bMo-.js.map +1 -0
- package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js +12 -0
- package/tracer-viewer-bundle/assets/monokai-D4h5O-jR.js.map +1 -0
- package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js +13 -0
- package/tracer-viewer-bundle/assets/moonbit-_H4v1dQx.js.map +1 -0
- package/tracer-viewer-bundle/assets/move-IF9eRakj.js +13 -0
- package/tracer-viewer-bundle/assets/move-IF9eRakj.js.map +1 -0
- package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js +13 -0
- package/tracer-viewer-bundle/assets/narrat-DRg8JJMk.js.map +1 -0
- package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js +14 -0
- package/tracer-viewer-bundle/assets/nextflow-C-mBbutL.js.map +1 -0
- package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js +13 -0
- package/tracer-viewer-bundle/assets/nextflow-groovy-vE_lwT2v.js.map +1 -0
- package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js +15 -0
- package/tracer-viewer-bundle/assets/nginx-BpAMiNFr.js.map +1 -0
- package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js +12 -0
- package/tracer-viewer-bundle/assets/night-owl-C39BiMTA.js.map +1 -0
- package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js +12 -0
- package/tracer-viewer-bundle/assets/night-owl-light-CMTm3GFP.js.map +1 -0
- package/tracer-viewer-bundle/assets/nim-BIad80T-.js +21 -0
- package/tracer-viewer-bundle/assets/nim-BIad80T-.js.map +1 -0
- package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js +19 -0
- package/tracer-viewer-bundle/assets/nix-CwoSXNpI.js.map +1 -0
- package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js +12 -0
- package/tracer-viewer-bundle/assets/nord-Ddv68eIx.js.map +1 -0
- package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js +13 -0
- package/tracer-viewer-bundle/assets/nushell-Cz2AlsmD.js.map +1 -0
- package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js +13 -0
- package/tracer-viewer-bundle/assets/objective-c-DXmwc3jG.js.map +1 -0
- package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js +13 -0
- package/tracer-viewer-bundle/assets/objective-cpp-CLxacb5B.js.map +1 -0
- package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js +13 -0
- package/tracer-viewer-bundle/assets/ocaml-C0hk2d4L.js.map +1 -0
- package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js +13 -0
- package/tracer-viewer-bundle/assets/odin-BBf5iR-q.js.map +1 -0
- package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js +12 -0
- package/tracer-viewer-bundle/assets/one-dark-pro-DVMEJ2y_.js.map +1 -0
- package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js +12 -0
- package/tracer-viewer-bundle/assets/one-light-C3Wv6jpd.js.map +1 -0
- package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js +13 -0
- package/tracer-viewer-bundle/assets/openscad-C4EeE6gA.js.map +1 -0
- package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js +13 -0
- package/tracer-viewer-bundle/assets/pascal-D93ZcfNL.js.map +1 -0
- package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js +19 -0
- package/tracer-viewer-bundle/assets/perl-NvoQZIq0.js.map +1 -0
- package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js +20 -0
- package/tracer-viewer-bundle/assets/php-R6g_5hLQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js +13 -0
- package/tracer-viewer-bundle/assets/pkl-u5AG7uiY.js.map +1 -0
- package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js +12 -0
- package/tracer-viewer-bundle/assets/plastic-3e1v2bzS.js.map +1 -0
- package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js +13 -0
- package/tracer-viewer-bundle/assets/plsql-ChMvpjG-.js.map +1 -0
- package/tracer-viewer-bundle/assets/po-BTJTHyun.js +13 -0
- package/tracer-viewer-bundle/assets/po-BTJTHyun.js.map +1 -0
- package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js +12 -0
- package/tracer-viewer-bundle/assets/poimandres-CS3Unz2-.js.map +1 -0
- package/tracer-viewer-bundle/assets/polar-C0HS_06l.js +13 -0
- package/tracer-viewer-bundle/assets/polar-C0HS_06l.js.map +1 -0
- package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js +13 -0
- package/tracer-viewer-bundle/assets/postcss-CXtECtnM.js.map +1 -0
- package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js +13 -0
- package/tracer-viewer-bundle/assets/powerquery-CEu0bR-o.js.map +1 -0
- package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js +13 -0
- package/tracer-viewer-bundle/assets/powershell-Dpen1YoG.js.map +1 -0
- package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js +13 -0
- package/tracer-viewer-bundle/assets/prisma-Dd19v3D-.js.map +1 -0
- package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js +13 -0
- package/tracer-viewer-bundle/assets/prolog-CbFg5uaA.js.map +1 -0
- package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js +13 -0
- package/tracer-viewer-bundle/assets/proto-C7zT0LnQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js +16 -0
- package/tracer-viewer-bundle/assets/pug-DKIMFp6K.js.map +1 -0
- package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js +13 -0
- package/tracer-viewer-bundle/assets/puppet-BMWR74SV.js.map +1 -0
- package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js +13 -0
- package/tracer-viewer-bundle/assets/purescript-CklMAg4u.js.map +1 -0
- package/tracer-viewer-bundle/assets/python-B6aJPvgy.js +13 -0
- package/tracer-viewer-bundle/assets/python-B6aJPvgy.js.map +1 -0
- package/tracer-viewer-bundle/assets/qml-3beO22l8.js +14 -0
- package/tracer-viewer-bundle/assets/qml-3beO22l8.js.map +1 -0
- package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js +13 -0
- package/tracer-viewer-bundle/assets/qmldir-C8lEn-DE.js.map +1 -0
- package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js +13 -0
- package/tracer-viewer-bundle/assets/qss-IeuSbFQv.js.map +1 -0
- package/tracer-viewer-bundle/assets/r-Dspwwk_N.js +13 -0
- package/tracer-viewer-bundle/assets/r-Dspwwk_N.js.map +1 -0
- package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js +13 -0
- package/tracer-viewer-bundle/assets/racket-BqYA7rlc.js.map +1 -0
- package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js +13 -0
- package/tracer-viewer-bundle/assets/raku-DXvB9xmW.js.map +1 -0
- package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js +17 -0
- package/tracer-viewer-bundle/assets/razor-BDqjjVU7.js.map +1 -0
- package/tracer-viewer-bundle/assets/red-bN70gL4F.js +12 -0
- package/tracer-viewer-bundle/assets/red-bN70gL4F.js.map +1 -0
- package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js +13 -0
- package/tracer-viewer-bundle/assets/reg-C-SQnVFl.js.map +1 -0
- package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js +13 -0
- package/tracer-viewer-bundle/assets/regexp-CDVJQ6XC.js.map +1 -0
- package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js +13 -0
- package/tracer-viewer-bundle/assets/rel-C3B-1QV4.js.map +1 -0
- package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js +13 -0
- package/tracer-viewer-bundle/assets/riscv-BM1_JUlF.js.map +1 -0
- package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js +13 -0
- package/tracer-viewer-bundle/assets/ron-D8l8udqQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js +12 -0
- package/tracer-viewer-bundle/assets/rose-pine-dawn-DHQR4-dF.js.map +1 -0
- package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js +12 -0
- package/tracer-viewer-bundle/assets/rose-pine-moon-D4_iv3hh.js.map +1 -0
- package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js +12 -0
- package/tracer-viewer-bundle/assets/rose-pine-qdsjHGoJ.js.map +1 -0
- package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js +13 -0
- package/tracer-viewer-bundle/assets/rosmsg-BJDFO7_C.js.map +1 -0
- package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js +35 -0
- package/tracer-viewer-bundle/assets/rst-CRjBmOyv.js.map +1 -0
- package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js +31 -0
- package/tracer-viewer-bundle/assets/ruby-Wjq7vjNf.js.map +1 -0
- package/tracer-viewer-bundle/assets/rust-B1yitclQ.js +13 -0
- package/tracer-viewer-bundle/assets/rust-B1yitclQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js +14 -0
- package/tracer-viewer-bundle/assets/sas-cz2c8ADy.js.map +1 -0
- package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js +13 -0
- package/tracer-viewer-bundle/assets/sass-Cj5Yp3dK.js.map +1 -0
- package/tracer-viewer-bundle/assets/scala-C151Ov-r.js +13 -0
- package/tracer-viewer-bundle/assets/scala-C151Ov-r.js.map +1 -0
- package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js +13 -0
- package/tracer-viewer-bundle/assets/scheme-C98Dy4si.js.map +1 -0
- package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js +14 -0
- package/tracer-viewer-bundle/assets/scss-D5BDwBP9.js.map +1 -0
- package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js +13 -0
- package/tracer-viewer-bundle/assets/sdbl-DVxCFoDh.js.map +1 -0
- package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js +14 -0
- package/tracer-viewer-bundle/assets/shaderlab-Dg9Lc6iA.js.map +1 -0
- package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js +13 -0
- package/tracer-viewer-bundle/assets/shellscript-Yzrsuije.js.map +1 -0
- package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js +14 -0
- package/tracer-viewer-bundle/assets/shellsession-BADoaaVG.js.map +1 -0
- package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js +12 -0
- package/tracer-viewer-bundle/assets/slack-dark-BthQWCQV.js.map +1 -0
- package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js +12 -0
- package/tracer-viewer-bundle/assets/slack-ochin-DqwNpetd.js.map +1 -0
- package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js +13 -0
- package/tracer-viewer-bundle/assets/smalltalk-BERRCDM3.js.map +1 -0
- package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js +12 -0
- package/tracer-viewer-bundle/assets/snazzy-light-Bw305WKR.js.map +1 -0
- package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js +12 -0
- package/tracer-viewer-bundle/assets/solarized-dark-DXbdFlpD.js.map +1 -0
- package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js +12 -0
- package/tracer-viewer-bundle/assets/solarized-light-L9t79GZl.js.map +1 -0
- package/tracer-viewer-bundle/assets/solidity-rGO070M0.js +13 -0
- package/tracer-viewer-bundle/assets/solidity-rGO070M0.js.map +1 -0
- package/tracer-viewer-bundle/assets/soy-8wufbnw4.js +16 -0
- package/tracer-viewer-bundle/assets/soy-8wufbnw4.js.map +1 -0
- package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js +14 -0
- package/tracer-viewer-bundle/assets/sparql-rVzFXLq3.js.map +1 -0
- package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js +13 -0
- package/tracer-viewer-bundle/assets/splunk-BtCnVYZw.js.map +1 -0
- package/tracer-viewer-bundle/assets/sql-BLtJtn59.js +13 -0
- package/tracer-viewer-bundle/assets/sql-BLtJtn59.js.map +1 -0
- package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js +13 -0
- package/tracer-viewer-bundle/assets/ssh-config-_ykCGR6B.js.map +1 -0
- package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js +14 -0
- package/tracer-viewer-bundle/assets/stata-BH5u7GGu.js.map +1 -0
- package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js +13 -0
- package/tracer-viewer-bundle/assets/stylus-BEDo0Tqx.js.map +1 -0
- package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js +14 -0
- package/tracer-viewer-bundle/assets/surrealql-Bq5Q-fJD.js.map +1 -0
- package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js +17 -0
- package/tracer-viewer-bundle/assets/svelte-Cy7k_4gC.js.map +1 -0
- package/tracer-viewer-bundle/assets/swift-D82vCrfD.js +13 -0
- package/tracer-viewer-bundle/assets/swift-D82vCrfD.js.map +1 -0
- package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js +12 -0
- package/tracer-viewer-bundle/assets/synthwave-84-CbfX1IO0.js.map +1 -0
- package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js +13 -0
- package/tracer-viewer-bundle/assets/system-verilog-CnnmHF94.js.map +1 -0
- package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js +13 -0
- package/tracer-viewer-bundle/assets/systemd-4A_iFExJ.js.map +1 -0
- package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js +13 -0
- package/tracer-viewer-bundle/assets/talonscript-CkByrt1z.js.map +1 -0
- package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js +13 -0
- package/tracer-viewer-bundle/assets/tasl-QIJgUcNo.js.map +1 -0
- package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js +13 -0
- package/tracer-viewer-bundle/assets/tcl-dwOrl1Do.js.map +1 -0
- package/tracer-viewer-bundle/assets/templ-DhtptRzy.js +16 -0
- package/tracer-viewer-bundle/assets/templ-DhtptRzy.js.map +1 -0
- package/tracer-viewer-bundle/assets/terraform-BETggiCN.js +13 -0
- package/tracer-viewer-bundle/assets/terraform-BETggiCN.js.map +1 -0
- package/tracer-viewer-bundle/assets/tex-idrVyKtj.js +14 -0
- package/tracer-viewer-bundle/assets/tex-idrVyKtj.js.map +1 -0
- package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js +12 -0
- package/tracer-viewer-bundle/assets/tokyo-night-hegEt444.js.map +1 -0
- package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js +13 -0
- package/tracer-viewer-bundle/assets/toml-vGWfd6FD.js.map +1 -0
- package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js +52 -0
- package/tracer-viewer-bundle/assets/ts-tags-DQrlYJgV.js.map +1 -0
- package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js +13 -0
- package/tracer-viewer-bundle/assets/tsv-B_m7g4N7.js.map +1 -0
- package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js +13 -0
- package/tracer-viewer-bundle/assets/tsx-COt5Ahok.js.map +1 -0
- package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js +13 -0
- package/tracer-viewer-bundle/assets/turtle-BsS91CYL.js.map +1 -0
- package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js +36 -0
- package/tracer-viewer-bundle/assets/twig-xg9kU7Mw.js.map +1 -0
- package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js +13 -0
- package/tracer-viewer-bundle/assets/typescript-BPQ3VLAy.js.map +1 -0
- package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js +13 -0
- package/tracer-viewer-bundle/assets/typespec-CAFt9gP4.js.map +1 -0
- package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js +13 -0
- package/tracer-viewer-bundle/assets/typst-DHCkPAjA.js.map +1 -0
- package/tracer-viewer-bundle/assets/v-BcVCzyr7.js +13 -0
- package/tracer-viewer-bundle/assets/v-BcVCzyr7.js.map +1 -0
- package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js +13 -0
- package/tracer-viewer-bundle/assets/vala-CsfeWuGM.js.map +1 -0
- package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js +13 -0
- package/tracer-viewer-bundle/assets/vb-D17OF-Vu.js.map +1 -0
- package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js +13 -0
- package/tracer-viewer-bundle/assets/verilog-BQ8w6xss.js.map +1 -0
- package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js +12 -0
- package/tracer-viewer-bundle/assets/vesper-DU1UobuO.js.map +1 -0
- package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js +13 -0
- package/tracer-viewer-bundle/assets/vhdl-CeAyd5Ju.js.map +1 -0
- package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js +13 -0
- package/tracer-viewer-bundle/assets/viml-CJc9bBzg.js.map +1 -0
- package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js +12 -0
- package/tracer-viewer-bundle/assets/vitesse-black-Bkuqu6BP.js.map +1 -0
- package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js +12 -0
- package/tracer-viewer-bundle/assets/vitesse-dark-D0r3Knsf.js.map +1 -0
- package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js +12 -0
- package/tracer-viewer-bundle/assets/vitesse-light-CVO1_9PV.js.map +1 -0
- package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js +43 -0
- package/tracer-viewer-bundle/assets/vue-D2xRrEX4.js.map +1 -0
- package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js +14 -0
- package/tracer-viewer-bundle/assets/vue-html-AaS7Mt5G.js.map +1 -0
- package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js +19 -0
- package/tracer-viewer-bundle/assets/vue-vine-BoDAl6tE.js.map +1 -0
- package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js +13 -0
- package/tracer-viewer-bundle/assets/vyper-CDx5xZoG.js.map +1 -0
- package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js +15 -0
- package/tracer-viewer-bundle/assets/wasm-CG6Dc4jp.js.map +1 -0
- package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js +13 -0
- package/tracer-viewer-bundle/assets/wasm-MzD3tlZU.js.map +1 -0
- package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js +13 -0
- package/tracer-viewer-bundle/assets/wenyan-BV7otONQ.js.map +1 -0
- package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js +13 -0
- package/tracer-viewer-bundle/assets/wgsl-Dx-B1_4e.js.map +1 -0
- package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js +13 -0
- package/tracer-viewer-bundle/assets/wikitext-BhOHFoWU.js.map +1 -0
- package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js +13 -0
- package/tracer-viewer-bundle/assets/wit-5i3qLPDT.js.map +1 -0
- package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js +13 -0
- package/tracer-viewer-bundle/assets/wolfram-lXgVvXCa.js.map +1 -0
- package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js +14 -0
- package/tracer-viewer-bundle/assets/xml-sdJ4AIDG.js.map +1 -0
- package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js +15 -0
- package/tracer-viewer-bundle/assets/xsl-CtQFsRM5.js.map +1 -0
- package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js +13 -0
- package/tracer-viewer-bundle/assets/yaml-Buea-lGh.js.map +1 -0
- package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js +13 -0
- package/tracer-viewer-bundle/assets/zenscript-DVFEvuxE.js.map +1 -0
- package/tracer-viewer-bundle/assets/zig-VOosw3JB.js +13 -0
- package/tracer-viewer-bundle/assets/zig-VOosw3JB.js.map +1 -0
- package/tracer-viewer-bundle/index.html +25 -0
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
'{"colors":{"activityBar.activeBackground":"#3b4252","activityBar.activeBorder":"#88c0d0","activityBar.background":"#2e3440","activityBar.dropBackground":"#3b4252","activityBar.foreground":"#d8dee9","activityBarBadge.background":"#88c0d0","activityBarBadge.foreground":"#2e3440","badge.background":"#88c0d0","badge.foreground":"#2e3440","button.background":"#88c0d0ee","button.foreground":"#2e3440","button.hoverBackground":"#88c0d0","button.secondaryBackground":"#434c5e","button.secondaryForeground":"#d8dee9","button.secondaryHoverBackground":"#4c566a","charts.blue":"#81a1c1","charts.foreground":"#d8dee9","charts.green":"#a3be8c","charts.lines":"#88c0d0","charts.orange":"#d08770","charts.purple":"#b48ead","charts.red":"#bf616a","charts.yellow":"#ebcb8b","debugConsole.errorForeground":"#bf616a","debugConsole.infoForeground":"#88c0d0","debugConsole.sourceForeground":"#616e88","debugConsole.warningForeground":"#ebcb8b","debugConsoleInputIcon.foreground":"#81a1c1","debugExceptionWidget.background":"#4c566a","debugExceptionWidget.border":"#2e3440","debugToolBar.background":"#3b4252","descriptionForeground":"#d8dee9e6","diffEditor.insertedTextBackground":"#81a1c133","diffEditor.removedTextBackground":"#bf616a4d","dropdown.background":"#3b4252","dropdown.border":"#3b4252","dropdown.foreground":"#d8dee9","editor.background":"#2e3440","editor.findMatchBackground":"#88c0d066","editor.findMatchHighlightBackground":"#88c0d033","editor.findRangeHighlightBackground":"#88c0d033","editor.focusedStackFrameHighlightBackground":"#5e81ac","editor.foreground":"#d8dee9","editor.hoverHighlightBackground":"#3b4252","editor.inactiveSelectionBackground":"#434c5ecc","editor.inlineValuesBackground":"#4c566a","editor.inlineValuesForeground":"#eceff4","editor.lineHighlightBackground":"#3b4252","editor.lineHighlightBorder":"#3b4252","editor.rangeHighlightBackground":"#434c5e52","editor.selectionBackground":"#434c5ecc","editor.selectionHighlightBackground":"#434c5ecc","editor.stackFrameHighlightBackground":"#5e81ac","editor.wordHighlightBackground":"#81a1c166","editor.wordHighlightStrongBackground":"#81a1c199","editorActiveLineNumber.foreground":"#d8dee9cc","editorBracketHighlight.foreground1":"#8fbcbb","editorBracketHighlight.foreground2":"#88c0d0","editorBracketHighlight.foreground3":"#81a1c1","editorBracketHighlight.foreground4":"#5e81ac","editorBracketHighlight.foreground5":"#8fbcbb","editorBracketHighlight.foreground6":"#88c0d0","editorBracketHighlight.unexpectedBracket.foreground":"#bf616a","editorBracketMatch.background":"#2e344000","editorBracketMatch.border":"#88c0d0","editorCodeLens.foreground":"#4c566a","editorCursor.foreground":"#d8dee9","editorError.border":"#bf616a00","editorError.foreground":"#bf616a","editorGroup.background":"#2e3440","editorGroup.border":"#3b425201","editorGroup.dropBackground":"#3b425299","editorGroupHeader.border":"#3b425200","editorGroupHeader.noTabsBackground":"#2e3440","editorGroupHeader.tabsBackground":"#2e3440","editorGroupHeader.tabsBorder":"#3b425200","editorGutter.addedBackground":"#a3be8c","editorGutter.background":"#2e3440","editorGutter.deletedBackground":"#bf616a","editorGutter.modifiedBackground":"#ebcb8b","editorHint.border":"#ebcb8b00","editorHint.foreground":"#ebcb8b","editorHoverWidget.background":"#3b4252","editorHoverWidget.border":"#3b4252","editorIndentGuide.activeBackground":"#4c566a","editorIndentGuide.background":"#434c5eb3","editorInlayHint.background":"#434c5e","editorInlayHint.foreground":"#d8dee9","editorLineNumber.activeForeground":"#d8dee9","editorLineNumber.foreground":"#4c566a","editorLink.activeForeground":"#88c0d0","editorMarkerNavigation.background":"#5e81acc0","editorMarkerNavigationError.background":"#bf616ac0","editorMarkerNavigationWarning.background":"#ebcb8bc0","editorOverviewRuler.addedForeground":"#a3be8c","editorOverviewRuler.border":"#3b4252","editorOverviewRuler.currentContentForeground":"#3b4252","editorOverviewRuler.deletedForeground":"#bf616a","editorOverviewRuler.errorForeground":"#bf616a","editorOverviewRuler.findMatchForeground":"#88c0d066","editorOverviewRuler.incomingContentForeground":"#3b4252","editorOverviewRuler.infoForeground":"#81a1c1","editorOverviewRuler.modifiedForeground":"#ebcb8b","editorOverviewRuler.rangeHighlightForeground":"#88c0d066","editorOverviewRuler.selectionHighlightForeground":"#88c0d066","editorOverviewRuler.warningForeground":"#ebcb8b","editorOverviewRuler.wordHighlightForeground":"#88c0d066","editorOverviewRuler.wordHighlightStrongForeground":"#88c0d066","editorRuler.foreground":"#434c5e","editorSuggestWidget.background":"#2e3440","editorSuggestWidget.border":"#3b4252","editorSuggestWidget.focusHighlightForeground":"#88c0d0","editorSuggestWidget.foreground":"#d8dee9","editorSuggestWidget.highlightForeground":"#88c0d0","editorSuggestWidget.selectedBackground":"#434c5e","editorSuggestWidget.selectedForeground":"#d8dee9","editorWarning.border":"#ebcb8b00","editorWarning.foreground":"#ebcb8b","editorWhitespace.foreground":"#4c566ab3","editorWidget.background":"#2e3440","editorWidget.border":"#3b4252","errorForeground":"#bf616a","extensionButton.prominentBackground":"#434c5e","extensionButton.prominentForeground":"#d8dee9","extensionButton.prominentHoverBackground":"#4c566a","focusBorder":"#3b4252","foreground":"#d8dee9","gitDecoration.conflictingResourceForeground":"#5e81ac","gitDecoration.deletedResourceForeground":"#bf616a","gitDecoration.ignoredResourceForeground":"#d8dee966","gitDecoration.modifiedResourceForeground":"#ebcb8b","gitDecoration.stageDeletedResourceForeground":"#bf616a","gitDecoration.stageModifiedResourceForeground":"#ebcb8b","gitDecoration.submoduleResourceForeground":"#8fbcbb","gitDecoration.untrackedResourceForeground":"#a3be8c","input.background":"#3b4252","input.border":"#3b4252","input.foreground":"#d8dee9","input.placeholderForeground":"#d8dee999","inputOption.activeBackground":"#5e81ac","inputOption.activeBorder":"#5e81ac","inputOption.activeForeground":"#eceff4","inputValidation.errorBackground":"#bf616a","inputValidation.errorBorder":"#bf616a","inputValidation.infoBackground":"#81a1c1","inputValidation.infoBorder":"#81a1c1","inputValidation.warningBackground":"#d08770","inputValidation.warningBorder":"#d08770","keybindingLabel.background":"#4c566a","keybindingLabel.border":"#4c566a","keybindingLabel.bottomBorder":"#4c566a","keybindingLabel.foreground":"#d8dee9","list.activeSelectionBackground":"#88c0d0","list.activeSelectionForeground":"#2e3440","list.dropBackground":"#88c0d099","list.errorForeground":"#bf616a","list.focusBackground":"#88c0d099","list.focusForeground":"#d8dee9","list.focusHighlightForeground":"#eceff4","list.highlightForeground":"#88c0d0","list.hoverBackground":"#3b4252","list.hoverForeground":"#eceff4","list.inactiveFocusBackground":"#434c5ecc","list.inactiveSelectionBackground":"#434c5e","list.inactiveSelectionForeground":"#d8dee9","list.warningForeground":"#ebcb8b","merge.border":"#3b425200","merge.currentContentBackground":"#81a1c14d","merge.currentHeaderBackground":"#81a1c166","merge.incomingContentBackground":"#8fbcbb4d","merge.incomingHeaderBackground":"#8fbcbb66","minimap.background":"#2e3440","minimap.errorHighlight":"#bf616acc","minimap.findMatchHighlight":"#88c0d0","minimap.selectionHighlight":"#88c0d0cc","minimap.warningHighlight":"#ebcb8bcc","minimapGutter.addedBackground":"#a3be8c","minimapGutter.deletedBackground":"#bf616a","minimapGutter.modifiedBackground":"#ebcb8b","minimapSlider.activeBackground":"#434c5eaa","minimapSlider.background":"#434c5e99","minimapSlider.hoverBackground":"#434c5eaa","notification.background":"#3b4252","notification.buttonBackground":"#434c5e","notification.buttonForeground":"#d8dee9","notification.buttonHoverBackground":"#4c566a","notification.errorBackground":"#bf616a","notification.errorForeground":"#2e3440","notification.foreground":"#d8dee9","notification.infoBackground":"#88c0d0","notification.infoForeground":"#2e3440","notification.warningBackground":"#ebcb8b","notification.warningForeground":"#2e3440","notificationCenter.border":"#3b425200","notificationCenterHeader.background":"#2e3440","notificationCenterHeader.foreground":"#88c0d0","notificationLink.foreground":"#88c0d0","notificationToast.border":"#3b425200","notifications.background":"#3b4252","notifications.border":"#2e3440","notifications.foreground":"#d8dee9","panel.background":"#2e3440","panel.border":"#3b4252","panelTitle.activeBorder":"#88c0d000","panelTitle.activeForeground":"#88c0d0","panelTitle.inactiveForeground":"#d8dee9","peekView.border":"#4c566a","peekViewEditor.background":"#2e3440","peekViewEditor.matchHighlightBackground":"#88c0d04d","peekViewEditorGutter.background":"#2e3440","peekViewResult.background":"#2e3440","peekViewResult.fileForeground":"#88c0d0","peekViewResult.lineForeground":"#d8dee966","peekViewResult.matchHighlightBackground":"#88c0d0cc","peekViewResult.selectionBackground":"#434c5e","peekViewResult.selectionForeground":"#d8dee9","peekViewTitle.background":"#3b4252","peekViewTitleDescription.foreground":"#d8dee9","peekViewTitleLabel.foreground":"#88c0d0","pickerGroup.border":"#3b4252","pickerGroup.foreground":"#88c0d0","progressBar.background":"#88c0d0","quickInputList.focusBackground":"#88c0d0","quickInputList.focusForeground":"#2e3440","sash.hoverBorder":"#88c0d0","scrollbar.shadow":"#00000066","scrollbarSlider.activeBackground":"#434c5eaa","scrollbarSlider.background":"#434c5e99","scrollbarSlider.hoverBackground":"#434c5eaa","selection.background":"#88c0d099","sideBar.background":"#2e3440","sideBar.border":"#3b4252","sideBar.foreground":"#d8dee9","sideBarSectionHeader.background":"#3b4252","sideBarSectionHeader.foreground":"#d8dee9","sideBarTitle.foreground":"#d8dee9","statusBar.background":"#3b4252","statusBar.border":"#3b425200","statusBar.debuggingBackground":"#5e81ac","statusBar.debuggingForeground":"#d8dee9","statusBar.foreground":"#d8dee9","statusBar.noFolderBackground":"#3b4252","statusBar.noFolderForeground":"#d8dee9","statusBarItem.activeBackground":"#4c566a","statusBarItem.errorBackground":"#3b4252","statusBarItem.errorForeground":"#bf616a","statusBarItem.hoverBackground":"#434c5e","statusBarItem.prominentBackground":"#3b4252","statusBarItem.prominentHoverBackground":"#434c5e","statusBarItem.warningBackground":"#ebcb8b","statusBarItem.warningForeground":"#2e3440","tab.activeBackground":"#3b4252","tab.activeBorder":"#88c0d000","tab.activeBorderTop":"#88c0d000","tab.activeForeground":"#d8dee9","tab.border":"#3b425200","tab.hoverBackground":"#3b4252cc","tab.hoverBorder":"#88c0d000","tab.inactiveBackground":"#2e3440","tab.inactiveForeground":"#d8dee966","tab.lastPinnedBorder":"#4c566a","tab.unfocusedActiveBorder":"#88c0d000","tab.unfocusedActiveBorderTop":"#88c0d000","tab.unfocusedActiveForeground":"#d8dee999","tab.unfocusedHoverBackground":"#3b4252b3","tab.unfocusedHoverBorder":"#88c0d000","tab.unfocusedInactiveForeground":"#d8dee966","terminal.ansiBlack":"#3b4252","terminal.ansiBlue":"#81a1c1","terminal.ansiBrightBlack":"#4c566a","terminal.ansiBrightBlue":"#81a1c1","terminal.ansiBrightCyan":"#8fbcbb","terminal.ansiBrightGreen":"#a3be8c","terminal.ansiBrightMagenta":"#b48ead","terminal.ansiBrightRed":"#bf616a","terminal.ansiBrightWhite":"#eceff4","terminal.ansiBrightYellow":"#ebcb8b","terminal.ansiCyan":"#88c0d0","terminal.ansiGreen":"#a3be8c","terminal.ansiMagenta":"#b48ead","terminal.ansiRed":"#bf616a","terminal.ansiWhite":"#e5e9f0","terminal.ansiYellow":"#ebcb8b","terminal.background":"#2e3440","terminal.foreground":"#d8dee9","terminal.tab.activeBorder":"#88c0d0","textBlockQuote.background":"#3b4252","textBlockQuote.border":"#81a1c1","textCodeBlock.background":"#4c566a","textLink.activeForeground":"#88c0d0","textLink.foreground":"#88c0d0","textPreformat.foreground":"#8fbcbb","textSeparator.foreground":"#eceff4","titleBar.activeBackground":"#2e3440","titleBar.activeForeground":"#d8dee9","titleBar.border":"#2e344000","titleBar.inactiveBackground":"#2e3440","titleBar.inactiveForeground":"#d8dee966","tree.indentGuidesStroke":"#616e88","walkThrough.embeddedEditorBackground":"#2e3440","welcomePage.buttonBackground":"#434c5e","welcomePage.buttonHoverBackground":"#4c566a","widget.shadow":"#00000066"},"displayName":"Nord","name":"nord","semanticHighlighting":true,"tokenColors":[{"settings":{"background":"#2e3440ff","foreground":"#d8dee9ff"}},{"scope":"emphasis","settings":{"fontStyle":"italic"}},{"scope":"strong","settings":{"fontStyle":"bold"}},{"scope":"comment","settings":{"foreground":"#616E88"}},{"scope":"constant.character","settings":{"foreground":"#EBCB8B"}},{"scope":"constant.character.escape","settings":{"foreground":"#EBCB8B"}},{"scope":"constant.language","settings":{"foreground":"#81A1C1"}},{"scope":"constant.numeric","settings":{"foreground":"#B48EAD"}},{"scope":"constant.regexp","settings":{"foreground":"#EBCB8B"}},{"scope":["entity.name.class","entity.name.type.class"],"settings":{"foreground":"#8FBCBB"}},{"scope":"entity.name.function","settings":{"foreground":"#88C0D0"}},{"scope":"entity.name.tag","settings":{"foreground":"#81A1C1"}},{"scope":"entity.other.attribute-name","settings":{"foreground":"#8FBCBB"}},{"scope":"entity.other.inherited-class","settings":{"fontStyle":"bold","foreground":"#8FBCBB"}},{"scope":"invalid.deprecated","settings":{"background":"#EBCB8B","foreground":"#D8DEE9"}},{"scope":"invalid.illegal","settings":{"background":"#BF616A","foreground":"#D8DEE9"}},{"scope":"keyword","settings":{"foreground":"#81A1C1"}},{"scope":"keyword.operator","settings":{"foreground":"#81A1C1"}},{"scope":"keyword.other.new","settings":{"foreground":"#81A1C1"}},{"scope":"markup.bold","settings":{"fontStyle":"bold"}},{"scope":"markup.changed","settings":{"foreground":"#EBCB8B"}},{"scope":"markup.deleted","settings":{"foreground":"#BF616A"}},{"scope":"markup.inserted","settings":{"foreground":"#A3BE8C"}},{"scope":"meta.preprocessor","settings":{"foreground":"#5E81AC"}},{"scope":"punctuation","settings":{"foreground":"#ECEFF4"}},{"scope":["punctuation.definition.method-parameters","punctuation.definition.function-parameters","punctuation.definition.parameters"],"settings":{"foreground":"#ECEFF4"}},{"scope":"punctuation.definition.tag","settings":{"foreground":"#81A1C1"}},{"scope":["punctuation.definition.comment","punctuation.end.definition.comment","punctuation.start.definition.comment"],"settings":{"foreground":"#616E88"}},{"scope":"punctuation.section","settings":{"foreground":"#ECEFF4"}},{"scope":["punctuation.section.embedded.begin","punctuation.section.embedded.end"],"settings":{"foreground":"#81A1C1"}},{"scope":"punctuation.terminator","settings":{"foreground":"#81A1C1"}},{"scope":"punctuation.definition.variable","settings":{"foreground":"#81A1C1"}},{"scope":"storage","settings":{"foreground":"#81A1C1"}},{"scope":"string","settings":{"foreground":"#A3BE8C"}},{"scope":"string.regexp","settings":{"foreground":"#EBCB8B"}},{"scope":"support.class","settings":{"foreground":"#8FBCBB"}},{"scope":"support.constant","settings":{"foreground":"#81A1C1"}},{"scope":"support.function","settings":{"foreground":"#88C0D0"}},{"scope":"support.function.construct","settings":{"foreground":"#81A1C1"}},{"scope":"support.type","settings":{"foreground":"#8FBCBB"}},{"scope":"support.type.exception","settings":{"foreground":"#8FBCBB"}},{"scope":"token.debug-token","settings":{"foreground":"#b48ead"}},{"scope":"token.error-token","settings":{"foreground":"#bf616a"}},{"scope":"token.info-token","settings":{"foreground":"#88c0d0"}},{"scope":"token.warn-token","settings":{"foreground":"#ebcb8b"}},{"scope":"variable.other","settings":{"foreground":"#D8DEE9"}},{"scope":"variable.language","settings":{"foreground":"#81A1C1"}},{"scope":"variable.parameter","settings":{"foreground":"#D8DEE9"}},{"scope":"punctuation.separator.pointer-access.c","settings":{"foreground":"#81A1C1"}},{"scope":["source.c meta.preprocessor.include","source.c string.quoted.other.lt-gt.include"],"settings":{"foreground":"#8FBCBB"}},{"scope":["source.cpp keyword.control.directive.conditional","source.cpp punctuation.definition.directive","source.c keyword.control.directive.conditional","source.c punctuation.definition.directive"],"settings":{"fontStyle":"bold","foreground":"#5E81AC"}},{"scope":"source.css constant.other.color.rgb-value","settings":{"foreground":"#B48EAD"}},{"scope":"source.css meta.property-value","settings":{"foreground":"#88C0D0"}},{"scope":["source.css keyword.control.at-rule.media","source.css keyword.control.at-rule.media punctuation.definition.keyword"],"settings":{"foreground":"#D08770"}},{"scope":"source.css punctuation.definition.keyword","settings":{"foreground":"#81A1C1"}},{"scope":"source.css support.type.property-name","settings":{"foreground":"#D8DEE9"}},{"scope":"source.diff meta.diff.range.context","settings":{"foreground":"#8FBCBB"}},{"scope":"source.diff meta.diff.header.from-file","settings":{"foreground":"#8FBCBB"}},{"scope":"source.diff punctuation.definition.from-file","settings":{"foreground":"#8FBCBB"}},{"scope":"source.diff punctuation.definition.range","settings":{"foreground":"#8FBCBB"}},{"scope":"source.diff punctuation.definition.separator","settings":{"foreground":"#81A1C1"}},{"scope":"entity.name.type.module.elixir","settings":{"foreground":"#8FBCBB"}},{"scope":"variable.other.readwrite.module.elixir","settings":{"fontStyle":"bold","foreground":"#D8DEE9"}},{"scope":"constant.other.symbol.elixir","settings":{"fontStyle":"bold","foreground":"#D8DEE9"}},{"scope":"variable.other.constant.elixir","settings":{"foreground":"#8FBCBB"}},{"scope":"source.go constant.other.placeholder.go","settings":{"foreground":"#EBCB8B"}},{"scope":"source.java comment.block.documentation.javadoc punctuation.definition.entity.html","settings":{"foreground":"#81A1C1"}},{"scope":"source.java constant.other","settings":{"foreground":"#D8DEE9"}},{"scope":"source.java keyword.other.documentation","settings":{"foreground":"#8FBCBB"}},{"scope":"source.java keyword.other.documentation.author.javadoc","settings":{"foreground":"#8FBCBB"}},{"scope":["source.java keyword.other.documentation.directive","source.java keyword.other.documentation.custom"],"settings":{"foreground":"#8FBCBB"}},{"scope":"source.java keyword.other.documentation.see.javadoc","settings":{"foreground":"#8FBCBB"}},{"scope":"source.java meta.method-call meta.method","settings":{"foreground":"#88C0D0"}},{"scope":["source.java meta.tag.template.link.javadoc","source.java string.other.link.title.javadoc"],"settings":{"foreground":"#8FBCBB"}},{"scope":"source.java meta.tag.template.value.javadoc","settings":{"foreground":"#88C0D0"}},{"scope":"source.java punctuation.definition.keyword.javadoc","settings":{"foreground":"#8FBCBB"}},{"scope":["source.java punctuation.definition.tag.begin.javadoc","source.java punctuation.definition.tag.end.javadoc"],"settings":{"foreground":"#616E88"}},{"scope":"source.java storage.modifier.import","settings":{"foreground":"#8FBCBB"}},{"scope":"source.java storage.modifier.package","settings":{"foreground":"#8FBCBB"}},{"scope":"source.java storage.type","settings":{"foreground":"#8FBCBB"}},{"scope":"source.java storage.type.annotation","settings":{"foreground":"#D08770"}},{"scope":"source.java storage.type.generic","settings":{"foreground":"#8FBCBB"}},{"scope":"source.java storage.type.primitive","settings":{"foreground":"#81A1C1"}},{"scope":["source.js punctuation.decorator","source.js meta.decorator variable.other.readwrite","source.js meta.decorator entity.name.function"],"settings":{"foreground":"#D08770"}},{"scope":"source.js meta.object-literal.key","settings":{"foreground":"#88C0D0"}},{"scope":"source.js storage.type.class.jsdoc","settings":{"foreground":"#8FBCBB"}},{"scope":["source.js string.quoted.template punctuation.quasi.element.begin","source.js string.quoted.template punctuation.quasi.element.end","source.js string.template punctuation.definition.template-expression"],"settings":{"foreground":"#81A1C1"}},{"scope":"source.js string.quoted.template meta.method-call.with-arguments","settings":{"foreground":"#ECEFF4"}},{"scope":["source.js string.template meta.template.expression support.variable.property","source.js string.template meta.template.expression variable.other.object"],"settings":{"foreground":"#D8DEE9"}},{"scope":"source.js support.type.primitive","settings":{"foreground":"#81A1C1"}},{"scope":"source.js variable.other.object","settings":{"foreground":"#D8DEE9"}},{"scope":"source.js variable.other.readwrite.alias","settings":{"foreground":"#8FBCBB"}},{"scope":["source.js meta.embedded.line meta.brace.square","source.js meta.embedded.line meta.brace.round","source.js string.quoted.template meta.brace.square","source.js string.quoted.template meta.brace.round"],"settings":{"foreground":"#ECEFF4"}},{"scope":"text.html.basic constant.character.entity.html","settings":{"foreground":"#EBCB8B"}},{"scope":"text.html.basic constant.other.inline-data","settings":{"fontStyle":"italic","foreground":"#D08770"}},{"scope":"text.html.basic meta.tag.sgml.doctype","settings":{"foreground":"#5E81AC"}},{"scope":"text.html.basic punctuation.definition.entity","settings":{"foreground":"#81A1C1"}},{"scope":"source.properties entity.name.section.group-title.ini","settings":{"foreground":"#88C0D0"}},{"scope":"source.properties punctuation.separator.key-value.ini","settings":{"foreground":"#81A1C1"}},{"scope":["text.html.markdown markup.fenced_code.block","text.html.markdown markup.fenced_code.block punctuation.definition"],"settings":{"foreground":"#8FBCBB"}},{"scope":"markup.heading","settings":{"foreground":"#88C0D0"}},{"scope":["text.html.markdown markup.inline.raw","text.html.markdown markup.inline.raw punctuation.definition.raw"],"settings":{"foreground":"#8FBCBB"}},{"scope":"text.html.markdown markup.italic","settings":{"fontStyle":"italic"}},{"scope":"text.html.markdown markup.underline.link","settings":{"fontStyle":"underline"}},{"scope":"text.html.markdown beginning.punctuation.definition.list","settings":{"foreground":"#81A1C1"}},{"scope":"text.html.markdown beginning.punctuation.definition.quote","settings":{"foreground":"#8FBCBB"}},{"scope":"text.html.markdown markup.quote","settings":{"foreground":"#616E88"}},{"scope":"text.html.markdown constant.character.math.tex","settings":{"foreground":"#81A1C1"}},{"scope":["text.html.markdown punctuation.definition.math.begin","text.html.markdown punctuation.definition.math.end"],"settings":{"foreground":"#5E81AC"}},{"scope":"text.html.markdown punctuation.definition.function.math.tex","settings":{"foreground":"#88C0D0"}},{"scope":"text.html.markdown punctuation.math.operator.latex","settings":{"foreground":"#81A1C1"}},{"scope":"text.html.markdown punctuation.definition.heading","settings":{"foreground":"#81A1C1"}},{"scope":["text.html.markdown punctuation.definition.constant","text.html.markdown punctuation.definition.string"],"settings":{"foreground":"#81A1C1"}},{"scope":["text.html.markdown constant.other.reference.link","text.html.markdown string.other.link.description","text.html.markdown string.other.link.title"],"settings":{"foreground":"#88C0D0"}},{"scope":"source.perl punctuation.definition.variable","settings":{"foreground":"#D8DEE9"}},{"scope":["source.php meta.function-call","source.php meta.function-call.object"],"settings":{"foreground":"#88C0D0"}},{"scope":["source.python entity.name.function.decorator","source.python meta.function.decorator support.type"],"settings":{"foreground":"#D08770"}},{"scope":"source.python meta.function-call.generic","settings":{"foreground":"#88C0D0"}},{"scope":"source.python support.type","settings":{"foreground":"#88C0D0"}},{"scope":["source.python variable.parameter.function.language"],"settings":{"foreground":"#D8DEE9"}},{"scope":["source.python meta.function.parameters variable.parameter.function.language.special.self"],"settings":{"foreground":"#81A1C1"}},{"scope":"source.rust entity.name.type","settings":{"foreground":"#8FBCBB"}},{"scope":"source.rust meta.macro entity.name.function","settings":{"fontStyle":"bold","foreground":"#88C0D0"}},{"scope":["source.rust meta.attribute","source.rust meta.attribute punctuation","source.rust meta.attribute keyword.operator"],"settings":{"foreground":"#5E81AC"}},{"scope":"source.rust entity.name.type.trait","settings":{"fontStyle":"bold"}},{"scope":"source.rust punctuation.definition.interpolation","settings":{"foreground":"#EBCB8B"}},{"scope":["source.css.scss punctuation.definition.interpolation.begin.bracket.curly","source.css.scss punctuation.definition.interpolation.end.bracket.curly"],"settings":{"foreground":"#81A1C1"}},{"scope":"source.css.scss variable.interpolation","settings":{"fontStyle":"italic","foreground":"#D8DEE9"}},{"scope":["source.ts punctuation.decorator","source.ts meta.decorator variable.other.readwrite","source.ts meta.decorator entity.name.function","source.tsx punctuation.decorator","source.tsx meta.decorator variable.other.readwrite","source.tsx meta.decorator entity.name.function"],"settings":{"foreground":"#D08770"}},{"scope":["source.ts meta.object-literal.key","source.tsx meta.object-literal.key"],"settings":{"foreground":"#D8DEE9"}},{"scope":["source.ts meta.object-literal.key entity.name.function","source.tsx meta.object-literal.key entity.name.function"],"settings":{"foreground":"#88C0D0"}},{"scope":["source.ts support.class","source.ts support.type","source.ts entity.name.type","source.ts entity.name.class","source.tsx support.class","source.tsx support.type","source.tsx entity.name.type","source.tsx entity.name.class"],"settings":{"foreground":"#8FBCBB"}},{"scope":["source.ts support.constant.math","source.ts support.constant.dom","source.ts support.constant.json","source.tsx support.constant.math","source.tsx support.constant.dom","source.tsx support.constant.json"],"settings":{"foreground":"#8FBCBB"}},{"scope":["source.ts support.variable","source.tsx support.variable"],"settings":{"foreground":"#D8DEE9"}},{"scope":["source.ts meta.embedded.line meta.brace.square","source.ts meta.embedded.line meta.brace.round","source.tsx meta.embedded.line meta.brace.square","source.tsx meta.embedded.line meta.brace.round"],"settings":{"foreground":"#ECEFF4"}},{"scope":"text.xml entity.name.tag.namespace","settings":{"foreground":"#8FBCBB"}},{"scope":"text.xml keyword.other.doctype","settings":{"foreground":"#5E81AC"}},{"scope":"text.xml meta.tag.preprocessor entity.name.tag","settings":{"foreground":"#5E81AC"}},{"scope":["text.xml string.unquoted.cdata","text.xml string.unquoted.cdata punctuation.definition.string"],"settings":{"fontStyle":"italic","foreground":"#D08770"}},{"scope":"source.yaml entity.name.tag","settings":{"foreground":"#8FBCBB"}}],"type":"dark"}',
|
|
9
|
+
),
|
|
10
|
+
);
|
|
11
|
+
export { e as default };
|
|
12
|
+
//# sourceMappingURL=nord-Ddv68eIx.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nord-Ddv68eIx.js","sources":["../../../../node_modules/@shikijs/themes/dist/nord.mjs"],"sourcesContent":["/* Theme: nord */\nexport default Object.freeze(JSON.parse(\"{\\\"colors\\\":{\\\"activityBar.activeBackground\\\":\\\"#3b4252\\\",\\\"activityBar.activeBorder\\\":\\\"#88c0d0\\\",\\\"activityBar.background\\\":\\\"#2e3440\\\",\\\"activityBar.dropBackground\\\":\\\"#3b4252\\\",\\\"activityBar.foreground\\\":\\\"#d8dee9\\\",\\\"activityBarBadge.background\\\":\\\"#88c0d0\\\",\\\"activityBarBadge.foreground\\\":\\\"#2e3440\\\",\\\"badge.background\\\":\\\"#88c0d0\\\",\\\"badge.foreground\\\":\\\"#2e3440\\\",\\\"button.background\\\":\\\"#88c0d0ee\\\",\\\"button.foreground\\\":\\\"#2e3440\\\",\\\"button.hoverBackground\\\":\\\"#88c0d0\\\",\\\"button.secondaryBackground\\\":\\\"#434c5e\\\",\\\"button.secondaryForeground\\\":\\\"#d8dee9\\\",\\\"button.secondaryHoverBackground\\\":\\\"#4c566a\\\",\\\"charts.blue\\\":\\\"#81a1c1\\\",\\\"charts.foreground\\\":\\\"#d8dee9\\\",\\\"charts.green\\\":\\\"#a3be8c\\\",\\\"charts.lines\\\":\\\"#88c0d0\\\",\\\"charts.orange\\\":\\\"#d08770\\\",\\\"charts.purple\\\":\\\"#b48ead\\\",\\\"charts.red\\\":\\\"#bf616a\\\",\\\"charts.yellow\\\":\\\"#ebcb8b\\\",\\\"debugConsole.errorForeground\\\":\\\"#bf616a\\\",\\\"debugConsole.infoForeground\\\":\\\"#88c0d0\\\",\\\"debugConsole.sourceForeground\\\":\\\"#616e88\\\",\\\"debugConsole.warningForeground\\\":\\\"#ebcb8b\\\",\\\"debugConsoleInputIcon.foreground\\\":\\\"#81a1c1\\\",\\\"debugExceptionWidget.background\\\":\\\"#4c566a\\\",\\\"debugExceptionWidget.border\\\":\\\"#2e3440\\\",\\\"debugToolBar.background\\\":\\\"#3b4252\\\",\\\"descriptionForeground\\\":\\\"#d8dee9e6\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#81a1c133\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#bf616a4d\\\",\\\"dropdown.background\\\":\\\"#3b4252\\\",\\\"dropdown.border\\\":\\\"#3b4252\\\",\\\"dropdown.foreground\\\":\\\"#d8dee9\\\",\\\"editor.background\\\":\\\"#2e3440\\\",\\\"editor.findMatchBackground\\\":\\\"#88c0d066\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#88c0d033\\\",\\\"editor.findRangeHighlightBackground\\\":\\\"#88c0d033\\\",\\\"editor.focusedStackFrameHighlightBackground\\\":\\\"#5e81ac\\\",\\\"editor.foreground\\\":\\\"#d8dee9\\\",\\\"editor.hoverHighlightBackground\\\":\\\"#3b4252\\\",\\\"editor.inactiveSelectionBackground\\\":\\\"#434c5ecc\\\",\\\"editor.inlineValuesBackground\\\":\\\"#4c566a\\\",\\\"editor.inlineValuesForeground\\\":\\\"#eceff4\\\",\\\"editor.lineHighlightBackground\\\":\\\"#3b4252\\\",\\\"editor.lineHighlightBorder\\\":\\\"#3b4252\\\",\\\"editor.rangeHighlightBackground\\\":\\\"#434c5e52\\\",\\\"editor.selectionBackground\\\":\\\"#434c5ecc\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#434c5ecc\\\",\\\"editor.stackFrameHighlightBackground\\\":\\\"#5e81ac\\\",\\\"editor.wordHighlightBackground\\\":\\\"#81a1c166\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#81a1c199\\\",\\\"editorActiveLineNumber.foreground\\\":\\\"#d8dee9cc\\\",\\\"editorBracketHighlight.foreground1\\\":\\\"#8fbcbb\\\",\\\"editorBracketHighlight.foreground2\\\":\\\"#88c0d0\\\",\\\"editorBracketHighlight.foreground3\\\":\\\"#81a1c1\\\",\\\"editorBracketHighlight.foreground4\\\":\\\"#5e81ac\\\",\\\"editorBracketHighlight.foreground5\\\":\\\"#8fbcbb\\\",\\\"editorBracketHighlight.foreground6\\\":\\\"#88c0d0\\\",\\\"editorBracketHighlight.unexpectedBracket.foreground\\\":\\\"#bf616a\\\",\\\"editorBracketMatch.background\\\":\\\"#2e344000\\\",\\\"editorBracketMatch.border\\\":\\\"#88c0d0\\\",\\\"editorCodeLens.foreground\\\":\\\"#4c566a\\\",\\\"editorCursor.foreground\\\":\\\"#d8dee9\\\",\\\"editorError.border\\\":\\\"#bf616a00\\\",\\\"editorError.foreground\\\":\\\"#bf616a\\\",\\\"editorGroup.background\\\":\\\"#2e3440\\\",\\\"editorGroup.border\\\":\\\"#3b425201\\\",\\\"editorGroup.dropBackground\\\":\\\"#3b425299\\\",\\\"editorGroupHeader.border\\\":\\\"#3b425200\\\",\\\"editorGroupHeader.noTabsBackground\\\":\\\"#2e3440\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#2e3440\\\",\\\"editorGroupHeader.tabsBorder\\\":\\\"#3b425200\\\",\\\"editorGutter.addedBackground\\\":\\\"#a3be8c\\\",\\\"editorGutter.background\\\":\\\"#2e3440\\\",\\\"editorGutter.deletedBackground\\\":\\\"#bf616a\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#ebcb8b\\\",\\\"editorHint.border\\\":\\\"#ebcb8b00\\\",\\\"editorHint.foreground\\\":\\\"#ebcb8b\\\",\\\"editorHoverWidget.background\\\":\\\"#3b4252\\\",\\\"editorHoverWidget.border\\\":\\\"#3b4252\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#4c566a\\\",\\\"editorIndentGuide.background\\\":\\\"#434c5eb3\\\",\\\"editorInlayHint.background\\\":\\\"#434c5e\\\",\\\"editorInlayHint.foreground\\\":\\\"#d8dee9\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#d8dee9\\\",\\\"editorLineNumber.foreground\\\":\\\"#4c566a\\\",\\\"editorLink.activeForeground\\\":\\\"#88c0d0\\\",\\\"editorMarkerNavigation.background\\\":\\\"#5e81acc0\\\",\\\"editorMarkerNavigationError.background\\\":\\\"#bf616ac0\\\",\\\"editorMarkerNavigationWarning.background\\\":\\\"#ebcb8bc0\\\",\\\"editorOverviewRuler.addedForeground\\\":\\\"#a3be8c\\\",\\\"editorOverviewRuler.border\\\":\\\"#3b4252\\\",\\\"editorOverviewRuler.currentContentForeground\\\":\\\"#3b4252\\\",\\\"editorOverviewRuler.deletedForeground\\\":\\\"#bf616a\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#bf616a\\\",\\\"editorOverviewRuler.findMatchForeground\\\":\\\"#88c0d066\\\",\\\"editorOverviewRuler.incomingContentForeground\\\":\\\"#3b4252\\\",\\\"editorOverviewRuler.infoForeground\\\":\\\"#81a1c1\\\",\\\"editorOverviewRuler.modifiedForeground\\\":\\\"#ebcb8b\\\",\\\"editorOverviewRuler.rangeHighlightForeground\\\":\\\"#88c0d066\\\",\\\"editorOverviewRuler.selectionHighlightForeground\\\":\\\"#88c0d066\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#ebcb8b\\\",\\\"editorOverviewRuler.wordHighlightForeground\\\":\\\"#88c0d066\\\",\\\"editorOverviewRuler.wordHighlightStrongForeground\\\":\\\"#88c0d066\\\",\\\"editorRuler.foreground\\\":\\\"#434c5e\\\",\\\"editorSuggestWidget.background\\\":\\\"#2e3440\\\",\\\"editorSuggestWidget.border\\\":\\\"#3b4252\\\",\\\"editorSuggestWidget.focusHighlightForeground\\\":\\\"#88c0d0\\\",\\\"editorSuggestWidget.foreground\\\":\\\"#d8dee9\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#88c0d0\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#434c5e\\\",\\\"editorSuggestWidget.selectedForeground\\\":\\\"#d8dee9\\\",\\\"editorWarning.border\\\":\\\"#ebcb8b00\\\",\\\"editorWarning.foreground\\\":\\\"#ebcb8b\\\",\\\"editorWhitespace.foreground\\\":\\\"#4c566ab3\\\",\\\"editorWidget.background\\\":\\\"#2e3440\\\",\\\"editorWidget.border\\\":\\\"#3b4252\\\",\\\"errorForeground\\\":\\\"#bf616a\\\",\\\"extensionButton.prominentBackground\\\":\\\"#434c5e\\\",\\\"extensionButton.prominentForeground\\\":\\\"#d8dee9\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#4c566a\\\",\\\"focusBorder\\\":\\\"#3b4252\\\",\\\"foreground\\\":\\\"#d8dee9\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#5e81ac\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#bf616a\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#d8dee966\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#ebcb8b\\\",\\\"gitDecoration.stageDeletedResourceForeground\\\":\\\"#bf616a\\\",\\\"gitDecoration.stageModifiedResourceForeground\\\":\\\"#ebcb8b\\\",\\\"gitDecoration.submoduleResourceForeground\\\":\\\"#8fbcbb\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#a3be8c\\\",\\\"input.background\\\":\\\"#3b4252\\\",\\\"input.border\\\":\\\"#3b4252\\\",\\\"input.foreground\\\":\\\"#d8dee9\\\",\\\"input.placeholderForeground\\\":\\\"#d8dee999\\\",\\\"inputOption.activeBackground\\\":\\\"#5e81ac\\\",\\\"inputOption.activeBorder\\\":\\\"#5e81ac\\\",\\\"inputOption.activeForeground\\\":\\\"#eceff4\\\",\\\"inputValidation.errorBackground\\\":\\\"#bf616a\\\",\\\"inputValidation.errorBorder\\\":\\\"#bf616a\\\",\\\"inputValidation.infoBackground\\\":\\\"#81a1c1\\\",\\\"inputValidation.infoBorder\\\":\\\"#81a1c1\\\",\\\"inputValidation.warningBackground\\\":\\\"#d08770\\\",\\\"inputValidation.warningBorder\\\":\\\"#d08770\\\",\\\"keybindingLabel.background\\\":\\\"#4c566a\\\",\\\"keybindingLabel.border\\\":\\\"#4c566a\\\",\\\"keybindingLabel.bottomBorder\\\":\\\"#4c566a\\\",\\\"keybindingLabel.foreground\\\":\\\"#d8dee9\\\",\\\"list.activeSelectionBackground\\\":\\\"#88c0d0\\\",\\\"list.activeSelectionForeground\\\":\\\"#2e3440\\\",\\\"list.dropBackground\\\":\\\"#88c0d099\\\",\\\"list.errorForeground\\\":\\\"#bf616a\\\",\\\"list.focusBackground\\\":\\\"#88c0d099\\\",\\\"list.focusForeground\\\":\\\"#d8dee9\\\",\\\"list.focusHighlightForeground\\\":\\\"#eceff4\\\",\\\"list.highlightForeground\\\":\\\"#88c0d0\\\",\\\"list.hoverBackground\\\":\\\"#3b4252\\\",\\\"list.hoverForeground\\\":\\\"#eceff4\\\",\\\"list.inactiveFocusBackground\\\":\\\"#434c5ecc\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#434c5e\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#d8dee9\\\",\\\"list.warningForeground\\\":\\\"#ebcb8b\\\",\\\"merge.border\\\":\\\"#3b425200\\\",\\\"merge.currentContentBackground\\\":\\\"#81a1c14d\\\",\\\"merge.currentHeaderBackground\\\":\\\"#81a1c166\\\",\\\"merge.incomingContentBackground\\\":\\\"#8fbcbb4d\\\",\\\"merge.incomingHeaderBackground\\\":\\\"#8fbcbb66\\\",\\\"minimap.background\\\":\\\"#2e3440\\\",\\\"minimap.errorHighlight\\\":\\\"#bf616acc\\\",\\\"minimap.findMatchHighlight\\\":\\\"#88c0d0\\\",\\\"minimap.selectionHighlight\\\":\\\"#88c0d0cc\\\",\\\"minimap.warningHighlight\\\":\\\"#ebcb8bcc\\\",\\\"minimapGutter.addedBackground\\\":\\\"#a3be8c\\\",\\\"minimapGutter.deletedBackground\\\":\\\"#bf616a\\\",\\\"minimapGutter.modifiedBackground\\\":\\\"#ebcb8b\\\",\\\"minimapSlider.activeBackground\\\":\\\"#434c5eaa\\\",\\\"minimapSlider.background\\\":\\\"#434c5e99\\\",\\\"minimapSlider.hoverBackground\\\":\\\"#434c5eaa\\\",\\\"notification.background\\\":\\\"#3b4252\\\",\\\"notification.buttonBackground\\\":\\\"#434c5e\\\",\\\"notification.buttonForeground\\\":\\\"#d8dee9\\\",\\\"notification.buttonHoverBackground\\\":\\\"#4c566a\\\",\\\"notification.errorBackground\\\":\\\"#bf616a\\\",\\\"notification.errorForeground\\\":\\\"#2e3440\\\",\\\"notification.foreground\\\":\\\"#d8dee9\\\",\\\"notification.infoBackground\\\":\\\"#88c0d0\\\",\\\"notification.infoForeground\\\":\\\"#2e3440\\\",\\\"notification.warningBackground\\\":\\\"#ebcb8b\\\",\\\"notification.warningForeground\\\":\\\"#2e3440\\\",\\\"notificationCenter.border\\\":\\\"#3b425200\\\",\\\"notificationCenterHeader.background\\\":\\\"#2e3440\\\",\\\"notificationCenterHeader.foreground\\\":\\\"#88c0d0\\\",\\\"notificationLink.foreground\\\":\\\"#88c0d0\\\",\\\"notificationToast.border\\\":\\\"#3b425200\\\",\\\"notifications.background\\\":\\\"#3b4252\\\",\\\"notifications.border\\\":\\\"#2e3440\\\",\\\"notifications.foreground\\\":\\\"#d8dee9\\\",\\\"panel.background\\\":\\\"#2e3440\\\",\\\"panel.border\\\":\\\"#3b4252\\\",\\\"panelTitle.activeBorder\\\":\\\"#88c0d000\\\",\\\"panelTitle.activeForeground\\\":\\\"#88c0d0\\\",\\\"panelTitle.inactiveForeground\\\":\\\"#d8dee9\\\",\\\"peekView.border\\\":\\\"#4c566a\\\",\\\"peekViewEditor.background\\\":\\\"#2e3440\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#88c0d04d\\\",\\\"peekViewEditorGutter.background\\\":\\\"#2e3440\\\",\\\"peekViewResult.background\\\":\\\"#2e3440\\\",\\\"peekViewResult.fileForeground\\\":\\\"#88c0d0\\\",\\\"peekViewResult.lineForeground\\\":\\\"#d8dee966\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#88c0d0cc\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#434c5e\\\",\\\"peekViewResult.selectionForeground\\\":\\\"#d8dee9\\\",\\\"peekViewTitle.background\\\":\\\"#3b4252\\\",\\\"peekViewTitleDescription.foreground\\\":\\\"#d8dee9\\\",\\\"peekViewTitleLabel.foreground\\\":\\\"#88c0d0\\\",\\\"pickerGroup.border\\\":\\\"#3b4252\\\",\\\"pickerGroup.foreground\\\":\\\"#88c0d0\\\",\\\"progressBar.background\\\":\\\"#88c0d0\\\",\\\"quickInputList.focusBackground\\\":\\\"#88c0d0\\\",\\\"quickInputList.focusForeground\\\":\\\"#2e3440\\\",\\\"sash.hoverBorder\\\":\\\"#88c0d0\\\",\\\"scrollbar.shadow\\\":\\\"#00000066\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#434c5eaa\\\",\\\"scrollbarSlider.background\\\":\\\"#434c5e99\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#434c5eaa\\\",\\\"selection.background\\\":\\\"#88c0d099\\\",\\\"sideBar.background\\\":\\\"#2e3440\\\",\\\"sideBar.border\\\":\\\"#3b4252\\\",\\\"sideBar.foreground\\\":\\\"#d8dee9\\\",\\\"sideBarSectionHeader.background\\\":\\\"#3b4252\\\",\\\"sideBarSectionHeader.foreground\\\":\\\"#d8dee9\\\",\\\"sideBarTitle.foreground\\\":\\\"#d8dee9\\\",\\\"statusBar.background\\\":\\\"#3b4252\\\",\\\"statusBar.border\\\":\\\"#3b425200\\\",\\\"statusBar.debuggingBackground\\\":\\\"#5e81ac\\\",\\\"statusBar.debuggingForeground\\\":\\\"#d8dee9\\\",\\\"statusBar.foreground\\\":\\\"#d8dee9\\\",\\\"statusBar.noFolderBackground\\\":\\\"#3b4252\\\",\\\"statusBar.noFolderForeground\\\":\\\"#d8dee9\\\",\\\"statusBarItem.activeBackground\\\":\\\"#4c566a\\\",\\\"statusBarItem.errorBackground\\\":\\\"#3b4252\\\",\\\"statusBarItem.errorForeground\\\":\\\"#bf616a\\\",\\\"statusBarItem.hoverBackground\\\":\\\"#434c5e\\\",\\\"statusBarItem.prominentBackground\\\":\\\"#3b4252\\\",\\\"statusBarItem.prominentHoverBackground\\\":\\\"#434c5e\\\",\\\"statusBarItem.warningBackground\\\":\\\"#ebcb8b\\\",\\\"statusBarItem.warningForeground\\\":\\\"#2e3440\\\",\\\"tab.activeBackground\\\":\\\"#3b4252\\\",\\\"tab.activeBorder\\\":\\\"#88c0d000\\\",\\\"tab.activeBorderTop\\\":\\\"#88c0d000\\\",\\\"tab.activeForeground\\\":\\\"#d8dee9\\\",\\\"tab.border\\\":\\\"#3b425200\\\",\\\"tab.hoverBackground\\\":\\\"#3b4252cc\\\",\\\"tab.hoverBorder\\\":\\\"#88c0d000\\\",\\\"tab.inactiveBackground\\\":\\\"#2e3440\\\",\\\"tab.inactiveForeground\\\":\\\"#d8dee966\\\",\\\"tab.lastPinnedBorder\\\":\\\"#4c566a\\\",\\\"tab.unfocusedActiveBorder\\\":\\\"#88c0d000\\\",\\\"tab.unfocusedActiveBorderTop\\\":\\\"#88c0d000\\\",\\\"tab.unfocusedActiveForeground\\\":\\\"#d8dee999\\\",\\\"tab.unfocusedHoverBackground\\\":\\\"#3b4252b3\\\",\\\"tab.unfocusedHoverBorder\\\":\\\"#88c0d000\\\",\\\"tab.unfocusedInactiveForeground\\\":\\\"#d8dee966\\\",\\\"terminal.ansiBlack\\\":\\\"#3b4252\\\",\\\"terminal.ansiBlue\\\":\\\"#81a1c1\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#4c566a\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#81a1c1\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#8fbcbb\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#a3be8c\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#b48ead\\\",\\\"terminal.ansiBrightRed\\\":\\\"#bf616a\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#eceff4\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#ebcb8b\\\",\\\"terminal.ansiCyan\\\":\\\"#88c0d0\\\",\\\"terminal.ansiGreen\\\":\\\"#a3be8c\\\",\\\"terminal.ansiMagenta\\\":\\\"#b48ead\\\",\\\"terminal.ansiRed\\\":\\\"#bf616a\\\",\\\"terminal.ansiWhite\\\":\\\"#e5e9f0\\\",\\\"terminal.ansiYellow\\\":\\\"#ebcb8b\\\",\\\"terminal.background\\\":\\\"#2e3440\\\",\\\"terminal.foreground\\\":\\\"#d8dee9\\\",\\\"terminal.tab.activeBorder\\\":\\\"#88c0d0\\\",\\\"textBlockQuote.background\\\":\\\"#3b4252\\\",\\\"textBlockQuote.border\\\":\\\"#81a1c1\\\",\\\"textCodeBlock.background\\\":\\\"#4c566a\\\",\\\"textLink.activeForeground\\\":\\\"#88c0d0\\\",\\\"textLink.foreground\\\":\\\"#88c0d0\\\",\\\"textPreformat.foreground\\\":\\\"#8fbcbb\\\",\\\"textSeparator.foreground\\\":\\\"#eceff4\\\",\\\"titleBar.activeBackground\\\":\\\"#2e3440\\\",\\\"titleBar.activeForeground\\\":\\\"#d8dee9\\\",\\\"titleBar.border\\\":\\\"#2e344000\\\",\\\"titleBar.inactiveBackground\\\":\\\"#2e3440\\\",\\\"titleBar.inactiveForeground\\\":\\\"#d8dee966\\\",\\\"tree.indentGuidesStroke\\\":\\\"#616e88\\\",\\\"walkThrough.embeddedEditorBackground\\\":\\\"#2e3440\\\",\\\"welcomePage.buttonBackground\\\":\\\"#434c5e\\\",\\\"welcomePage.buttonHoverBackground\\\":\\\"#4c566a\\\",\\\"widget.shadow\\\":\\\"#00000066\\\"},\\\"displayName\\\":\\\"Nord\\\",\\\"name\\\":\\\"nord\\\",\\\"semanticHighlighting\\\":true,\\\"tokenColors\\\":[{\\\"settings\\\":{\\\"background\\\":\\\"#2e3440ff\\\",\\\"foreground\\\":\\\"#d8dee9ff\\\"}},{\\\"scope\\\":\\\"emphasis\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"strong\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"comment\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#616E88\\\"}},{\\\"scope\\\":\\\"constant.character\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EBCB8B\\\"}},{\\\"scope\\\":\\\"constant.character.escape\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EBCB8B\\\"}},{\\\"scope\\\":\\\"constant.language\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"constant.numeric\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#B48EAD\\\"}},{\\\"scope\\\":\\\"constant.regexp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EBCB8B\\\"}},{\\\"scope\\\":[\\\"entity.name.class\\\",\\\"entity.name.type.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"entity.name.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":\\\"entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"entity.other.attribute-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"entity.other.inherited-class\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"invalid.deprecated\\\",\\\"settings\\\":{\\\"background\\\":\\\"#EBCB8B\\\",\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":\\\"invalid.illegal\\\",\\\"settings\\\":{\\\"background\\\":\\\"#BF616A\\\",\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":\\\"keyword\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"keyword.operator\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"keyword.other.new\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"markup.bold\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"markup.changed\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EBCB8B\\\"}},{\\\"scope\\\":\\\"markup.deleted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#BF616A\\\"}},{\\\"scope\\\":\\\"markup.inserted\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#A3BE8C\\\"}},{\\\"scope\\\":\\\"meta.preprocessor\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5E81AC\\\"}},{\\\"scope\\\":\\\"punctuation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ECEFF4\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.method-parameters\\\",\\\"punctuation.definition.function-parameters\\\",\\\"punctuation.definition.parameters\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ECEFF4\\\"}},{\\\"scope\\\":\\\"punctuation.definition.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":[\\\"punctuation.definition.comment\\\",\\\"punctuation.end.definition.comment\\\",\\\"punctuation.start.definition.comment\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#616E88\\\"}},{\\\"scope\\\":\\\"punctuation.section\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ECEFF4\\\"}},{\\\"scope\\\":[\\\"punctuation.section.embedded.begin\\\",\\\"punctuation.section.embedded.end\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"punctuation.terminator\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"punctuation.definition.variable\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"storage\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"string\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#A3BE8C\\\"}},{\\\"scope\\\":\\\"string.regexp\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EBCB8B\\\"}},{\\\"scope\\\":\\\"support.class\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"support.constant\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"support.function\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":\\\"support.function.construct\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"support.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"support.type.exception\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"token.debug-token\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#b48ead\\\"}},{\\\"scope\\\":\\\"token.error-token\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#bf616a\\\"}},{\\\"scope\\\":\\\"token.info-token\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88c0d0\\\"}},{\\\"scope\\\":\\\"token.warn-token\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ebcb8b\\\"}},{\\\"scope\\\":\\\"variable.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":\\\"variable.language\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"variable.parameter\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":\\\"punctuation.separator.pointer-access.c\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":[\\\"source.c meta.preprocessor.include\\\",\\\"source.c string.quoted.other.lt-gt.include\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":[\\\"source.cpp keyword.control.directive.conditional\\\",\\\"source.cpp punctuation.definition.directive\\\",\\\"source.c keyword.control.directive.conditional\\\",\\\"source.c punctuation.definition.directive\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#5E81AC\\\"}},{\\\"scope\\\":\\\"source.css constant.other.color.rgb-value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#B48EAD\\\"}},{\\\"scope\\\":\\\"source.css meta.property-value\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":[\\\"source.css keyword.control.at-rule.media\\\",\\\"source.css keyword.control.at-rule.media punctuation.definition.keyword\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D08770\\\"}},{\\\"scope\\\":\\\"source.css punctuation.definition.keyword\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"source.css support.type.property-name\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":\\\"source.diff meta.diff.range.context\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.diff meta.diff.header.from-file\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.diff punctuation.definition.from-file\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.diff punctuation.definition.range\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.diff punctuation.definition.separator\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"entity.name.type.module.elixir\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"variable.other.readwrite.module.elixir\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":\\\"constant.other.symbol.elixir\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":\\\"variable.other.constant.elixir\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.go constant.other.placeholder.go\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EBCB8B\\\"}},{\\\"scope\\\":\\\"source.java comment.block.documentation.javadoc punctuation.definition.entity.html\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"source.java constant.other\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":\\\"source.java keyword.other.documentation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.java keyword.other.documentation.author.javadoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":[\\\"source.java keyword.other.documentation.directive\\\",\\\"source.java keyword.other.documentation.custom\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.java keyword.other.documentation.see.javadoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.java meta.method-call meta.method\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":[\\\"source.java meta.tag.template.link.javadoc\\\",\\\"source.java string.other.link.title.javadoc\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.java meta.tag.template.value.javadoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":\\\"source.java punctuation.definition.keyword.javadoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":[\\\"source.java punctuation.definition.tag.begin.javadoc\\\",\\\"source.java punctuation.definition.tag.end.javadoc\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#616E88\\\"}},{\\\"scope\\\":\\\"source.java storage.modifier.import\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.java storage.modifier.package\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.java storage.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.java storage.type.annotation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#D08770\\\"}},{\\\"scope\\\":\\\"source.java storage.type.generic\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.java storage.type.primitive\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":[\\\"source.js punctuation.decorator\\\",\\\"source.js meta.decorator variable.other.readwrite\\\",\\\"source.js meta.decorator entity.name.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D08770\\\"}},{\\\"scope\\\":\\\"source.js meta.object-literal.key\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":\\\"source.js storage.type.class.jsdoc\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":[\\\"source.js string.quoted.template punctuation.quasi.element.begin\\\",\\\"source.js string.quoted.template punctuation.quasi.element.end\\\",\\\"source.js string.template punctuation.definition.template-expression\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"source.js string.quoted.template meta.method-call.with-arguments\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#ECEFF4\\\"}},{\\\"scope\\\":[\\\"source.js string.template meta.template.expression support.variable.property\\\",\\\"source.js string.template meta.template.expression variable.other.object\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":\\\"source.js support.type.primitive\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"source.js variable.other.object\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":\\\"source.js variable.other.readwrite.alias\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":[\\\"source.js meta.embedded.line meta.brace.square\\\",\\\"source.js meta.embedded.line meta.brace.round\\\",\\\"source.js string.quoted.template meta.brace.square\\\",\\\"source.js string.quoted.template meta.brace.round\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ECEFF4\\\"}},{\\\"scope\\\":\\\"text.html.basic constant.character.entity.html\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EBCB8B\\\"}},{\\\"scope\\\":\\\"text.html.basic constant.other.inline-data\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#D08770\\\"}},{\\\"scope\\\":\\\"text.html.basic meta.tag.sgml.doctype\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5E81AC\\\"}},{\\\"scope\\\":\\\"text.html.basic punctuation.definition.entity\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"source.properties entity.name.section.group-title.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":\\\"source.properties punctuation.separator.key-value.ini\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":[\\\"text.html.markdown markup.fenced_code.block\\\",\\\"text.html.markdown markup.fenced_code.block punctuation.definition\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"markup.heading\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":[\\\"text.html.markdown markup.inline.raw\\\",\\\"text.html.markdown markup.inline.raw punctuation.definition.raw\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"text.html.markdown markup.italic\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"}},{\\\"scope\\\":\\\"text.html.markdown markup.underline.link\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"}},{\\\"scope\\\":\\\"text.html.markdown beginning.punctuation.definition.list\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"text.html.markdown beginning.punctuation.definition.quote\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"text.html.markdown markup.quote\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#616E88\\\"}},{\\\"scope\\\":\\\"text.html.markdown constant.character.math.tex\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":[\\\"text.html.markdown punctuation.definition.math.begin\\\",\\\"text.html.markdown punctuation.definition.math.end\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#5E81AC\\\"}},{\\\"scope\\\":\\\"text.html.markdown punctuation.definition.function.math.tex\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":\\\"text.html.markdown punctuation.math.operator.latex\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"text.html.markdown punctuation.definition.heading\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":[\\\"text.html.markdown punctuation.definition.constant\\\",\\\"text.html.markdown punctuation.definition.string\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":[\\\"text.html.markdown constant.other.reference.link\\\",\\\"text.html.markdown string.other.link.description\\\",\\\"text.html.markdown string.other.link.title\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":\\\"source.perl punctuation.definition.variable\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":[\\\"source.php meta.function-call\\\",\\\"source.php meta.function-call.object\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":[\\\"source.python entity.name.function.decorator\\\",\\\"source.python meta.function.decorator support.type\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D08770\\\"}},{\\\"scope\\\":\\\"source.python meta.function-call.generic\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":\\\"source.python support.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":[\\\"source.python variable.parameter.function.language\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":[\\\"source.python meta.function.parameters variable.parameter.function.language.special.self\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"source.rust entity.name.type\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"source.rust meta.macro entity.name.function\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":[\\\"source.rust meta.attribute\\\",\\\"source.rust meta.attribute punctuation\\\",\\\"source.rust meta.attribute keyword.operator\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#5E81AC\\\"}},{\\\"scope\\\":\\\"source.rust entity.name.type.trait\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"}},{\\\"scope\\\":\\\"source.rust punctuation.definition.interpolation\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#EBCB8B\\\"}},{\\\"scope\\\":[\\\"source.css.scss punctuation.definition.interpolation.begin.bracket.curly\\\",\\\"source.css.scss punctuation.definition.interpolation.end.bracket.curly\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#81A1C1\\\"}},{\\\"scope\\\":\\\"source.css.scss variable.interpolation\\\",\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":[\\\"source.ts punctuation.decorator\\\",\\\"source.ts meta.decorator variable.other.readwrite\\\",\\\"source.ts meta.decorator entity.name.function\\\",\\\"source.tsx punctuation.decorator\\\",\\\"source.tsx meta.decorator variable.other.readwrite\\\",\\\"source.tsx meta.decorator entity.name.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D08770\\\"}},{\\\"scope\\\":[\\\"source.ts meta.object-literal.key\\\",\\\"source.tsx meta.object-literal.key\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":[\\\"source.ts meta.object-literal.key entity.name.function\\\",\\\"source.tsx meta.object-literal.key entity.name.function\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#88C0D0\\\"}},{\\\"scope\\\":[\\\"source.ts support.class\\\",\\\"source.ts support.type\\\",\\\"source.ts entity.name.type\\\",\\\"source.ts entity.name.class\\\",\\\"source.tsx support.class\\\",\\\"source.tsx support.type\\\",\\\"source.tsx entity.name.type\\\",\\\"source.tsx entity.name.class\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":[\\\"source.ts support.constant.math\\\",\\\"source.ts support.constant.dom\\\",\\\"source.ts support.constant.json\\\",\\\"source.tsx support.constant.math\\\",\\\"source.tsx support.constant.dom\\\",\\\"source.tsx support.constant.json\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":[\\\"source.ts support.variable\\\",\\\"source.tsx support.variable\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#D8DEE9\\\"}},{\\\"scope\\\":[\\\"source.ts meta.embedded.line meta.brace.square\\\",\\\"source.ts meta.embedded.line meta.brace.round\\\",\\\"source.tsx meta.embedded.line meta.brace.square\\\",\\\"source.tsx meta.embedded.line meta.brace.round\\\"],\\\"settings\\\":{\\\"foreground\\\":\\\"#ECEFF4\\\"}},{\\\"scope\\\":\\\"text.xml entity.name.tag.namespace\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}},{\\\"scope\\\":\\\"text.xml keyword.other.doctype\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5E81AC\\\"}},{\\\"scope\\\":\\\"text.xml meta.tag.preprocessor entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#5E81AC\\\"}},{\\\"scope\\\":[\\\"text.xml string.unquoted.cdata\\\",\\\"text.xml string.unquoted.cdata punctuation.definition.string\\\"],\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#D08770\\\"}},{\\\"scope\\\":\\\"source.yaml entity.name.tag\\\",\\\"settings\\\":{\\\"foreground\\\":\\\"#8FBCBB\\\"}}],\\\"type\\\":\\\"dark\\\"}\"))\n"],"names":["nord"],"mappings":"AACA,MAAAA,EAAe,OAAO,OAAO,KAAK,MAAM,yi0BAAyw5B,CAAC","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":"nushell","name":"nushell","patterns":[{"include":"#define-variable"},{"include":"#define-alias"},{"include":"#function"},{"include":"#extern"},{"include":"#module"},{"include":"#use-module"},{"include":"#expression"},{"include":"#comment"}],"repository":{"binary":{"begin":"\\\\b(0x)(\\\\[)","beginCaptures":{"1":{"name":"constant.numeric.nushell"},"2":{"name":"meta.brace.square.begin.nushell"}},"end":"]","endCaptures":{"0":{"name":"meta.brace.square.begin.nushell"}},"name":"constant.binary.nushell","patterns":[{"match":"\\\\h{2}","name":"constant.numeric.nushell"}]},"braced-expression":{"begin":"\\\\{","beginCaptures":{"0":{"name":"punctuation.section.block.begin.bracket.curly.nushell"}},"end":"}","endCaptures":{"0":{"name":"punctuation.section.block.end.bracket.curly.nushell"}},"name":"meta.expression.braced.nushell","patterns":[{"begin":"(?<=\\\\{)\\\\s*\\\\|","end":"\\\\|","name":"meta.closure.parameters.nushell","patterns":[{"include":"#function-parameter"}]},{"captures":{"1":{"name":"variable.other.nushell"},"2":{"name":"keyword.control.nushell"}},"match":"(\\\\w+)\\\\s*(:)\\\\s*"},{"captures":{"1":{"name":"variable.other.nushell"},"2":{"name":"variable.other.nushell","patterns":[{"include":"#paren-expression"}]},"3":{"name":"keyword.control.nushell"}},"match":"(\\\\$\\"((?:[^\\"\\\\\\\\]|\\\\\\\\.)*)\\")\\\\s*(:)\\\\s*","name":"meta.record-entry.nushell"},{"captures":{"1":{"name":"variable.other.nushell"},"2":{"name":"keyword.control.nushell"}},"match":"(\\"(?:[^\\"\\\\\\\\]|\\\\\\\\.)*\\")\\\\s*(:)\\\\s*","name":"meta.record-entry.nushell"},{"captures":{"1":{"name":"variable.other.nushell"},"2":{"name":"variable.other.nushell","patterns":[{"include":"#paren-expression"}]},"3":{"name":"keyword.control.nushell"}},"match":"(\\\\$'([^']*)')\\\\s*(:)\\\\s*","name":"meta.record-entry.nushell"},{"captures":{"1":{"name":"variable.other.nushell"},"2":{"name":"keyword.control.nushell"}},"match":"('[^']*')\\\\s*(:)\\\\s*","name":"meta.record-entry.nushell"},{"include":"#spread"},{"include":"source.nushell"}]},"command":{"begin":"(?<!\\\\w)(?:(\\\\^)|(?![$0-9]))([!.\\\\w]+(?: (?!-)[-!.\\\\w]+(?:(?=[ )])|$)|[-!.\\\\w]+)*|(?<=\\\\^)\\\\$?(?:\\"[^\\"]+\\"|'[^']+'))","beginCaptures":{"1":{"name":"keyword.operator.nushell"},"2":{"patterns":[{"include":"#control-keywords"},{"captures":{"0":{"name":"keyword.other.builtin.nushell"}},"match":"(?:ansi|char) \\\\w+"},{"captures":{"1":{"name":"keyword.other.builtin.nushell"},"2":{"patterns":[{"include":"#value"}]}},"match":"(a(?:l(?:ias|l)|n(?:si(?: (?:gradient|link|strip))?|y)|ppend|st|ttr(?: (?:category|deprecated|example|search-terms))?)|b(?:its(?: (?:and|not|or|ro[lr]|sh[lr]|xor))?|reak|ytes(?: (?:a(?:dd|t)|build|collect|ends-with|index-of|length|re(?:move|place|verse)|s(?:plit|tarts-with)))?)|c(?:al|d|h(?:ar|unk(?:-by|s))|lear|o(?:l(?:lect|umns)|m(?:mandline(?: (?:edit|get-cursor|set-cursor))?|p(?:act|lete))|n(?:fig(?: (?:env|flatten|nu|reset|use-colors))?|st|tinue))|p)|d(?:ate(?: (?:f(?:ormat|rom-human)|humanize|list-timezone|now|to-timezone))?|e(?:bug(?: (?:e(?:nv|xperimental-options)|info|profile))?|code(?: (?:base(?:32(?:hex)?|64)|hex))?|f(?:ault)?|scribe|tect(?: columns)?)|o|rop(?: (?:column|nth))?|t(?: (?:add|diff|format|now|part|to|utcnow))?|u)|e(?:ach(?: while)?|cho|moji|n(?:code(?: (?:base(?:32(?:hex)?|64)|hex))?|umerate)|rror(?: make)?|very|x(?:ec|it|p(?:l(?:ain|ore)|ort(?: (?:alias|const|def|extern|module|use)|-env)?)|tern))|f(?:i(?:l(?:[el]|ter)|nd|rst)|latten|or(?:mat(?: (?:bits|d(?:ate|uration)|filesize|number|pattern))?)?|rom(?: (?:csv|eml|i(?:cs|ni)|json|msgpackz?|nuon|ods|p(?:arquet|list)|ssv|t(?:oml|sv)|url|vcf|x(?:lsx|ml)|ya?ml))?)|g(?:e(?:nerate|t)|lob|r(?:id|oup-by)|stat)|h(?:ash(?: (?:md5|sha256))?|e(?:aders|lp(?: (?:aliases|commands|e(?:scapes|xterns)|modules|operators|pipe-and-redirect))?)|i(?:de(?:-env)?|sto(?:gram|ry(?: (?:import|session))?))|ttp(?: (?:delete|get|head|options|p(?:atch|ost|ut)))?)|i(?:f|gnore|n(?:c|put(?: list(?:en)?)?|s(?:ert|pect)|t(?:erleave|o(?: (?:b(?:inary|ool)|cell-path|d(?:atetime|uration)|f(?:ilesize|loat)|glob|int|record|s(?:qlite|tring)|value))?))|s-(?:admin|empty|not-empty|terminal)|tems)|j(?:o(?:b(?: (?:flush|id|kill|list|recv|s(?:end|pawn)|tag|unfreeze))?|in)|son path|walk)|k(?:eybindings(?: (?:default|list(?:en)?))?|ill)|l(?:ast|e(?:ngth|t(?:-env)?)|ines|o(?:ad-env|op)|s)|m(?:at(?:ch|h(?: (?:a(?:bs|rc(?:cosh?|sinh?|tanh?)|vg)|c(?:eil|osh?)|exp|floor|l(?:n|og)|m(?:ax|edian|in|ode)|product|round|s(?:inh?|qrt|tddev|um)|tanh?|variance))?)|e(?:rge(?: deep)?|tadata(?: (?:access|set))?)|k(?:dir|temp)|o(?:dule|ve)|ut|v)|nu-(?:check|highlight)|o(?:pen|verlay(?: (?:hide|list|new|use))?)|p(?:a(?:nic|r(?:-each|se)|th(?: (?:basename|dirname|ex(?:ists|pand)|join|parse|relative-to|s(?:elf|plit)|type))?)|lugin(?: (?:add|list|rm|stop|use))?|o(?:lars(?: (?:a(?:gg(?:-groups)?|ll-(?:false|true)|ppend|rg-(?:m(?:ax|in)|sort|true|unique|where)|s(?:-date(?:time)?)?)|c(?:a(?:che|st)|o(?:l(?:lect|umns)?|n(?:cat(?:-str)?|tains|vert-time-zone)|unt(?:-null)?)|u(?:mulative|t))|d(?:atepart|ecimal|rop(?:-(?:duplicates|nulls))?|ummies)|exp(?:lode|r-not)|f(?:etch|i(?:l(?:l-n(?:an|ull)|ter(?:-with)?)|rst)|latten)|g(?:et(?:-(?:day|hour|m(?:inute|onth)|nanosecond|ordinal|second|week(?:day)?|year))?|roup-by)|horizontal|i(?:mplode|nt(?:eger|o-(?:d(?:f|type)|lazy|nu|repr|schema))|s-(?:duplicated|in|n(?:ot-n|)ull|unique))|join(?:-where)?|l(?:ast|en|i(?:st-contains|t)|owercase)|m(?:a(?:th|x)|e(?:an|dian)|in)|n(?:-unique|ot)|o(?:pen|therwise|ver)|p(?:ivot|rofile)|q(?:cut|u(?:antile|ery))|r(?:e(?:name|place(?:-time-zone)?|verse)|olling)|s(?:a(?:mple|ve)|chema|e(?:lect|t(?:-with-idx)?)|h(?:ape|ift)|lice|ort-by|t(?:d|ore-(?:get|ls|rm)|r(?:-(?:join|lengths|replace(?:-all)?|s(?:lice|plit|trip-chars))|ftime|uct-json-encode))|um(?:mary)?)|t(?:ake|runcate)|u(?:n(?:ique|nest|pivot)|ppercase)|va(?:lue-counts|r)|w(?:hen|ith-column)))?|rt)|r(?:epend|int)|s)|query(?: (?:db|git|json|web(?:page-info)?|xml))?|r(?:andom(?: (?:b(?:inary|ool)|chars|dice|float|int|uuid))?|e(?:duce|g(?:ex|istry(?: query)?)|ject|name|turn|verse)|m|o(?:ll(?: (?:down|left|right|up))?|tate)|un-(?:ex|in)ternal)|s(?:ave|c(?:hema|ope(?: (?:aliases|commands|e(?:ngine-stats|xterns)|modules|variables))?)|e(?:lect|q(?: (?:char|date))?)|huffle|kip(?: (?:until|while))?|l(?:eep|ice)|o(?:rt(?:-by)?|urce(?:-env)?)|plit(?: (?:c(?:ell-path|hars|olumn)|list|row|words))?|t(?:art|or(?: (?:create|delete|export|i(?:mport|nsert)|open|reset|update))?|r(?: (?:c(?:a(?:mel-case|pitalize)|o(?:mpress|ntains))|d(?:e(?:compress|dent|unicode)|istance|owncase)|e(?:nds-with|xpand)|inde(?:nt|x-of)|join|kebab-case|length|pascal-case|re(?:place|verse)|s(?:creaming-snake-case|hl-(?:quote|split)|imilarity|lug|nake-case|ta(?:rts-with|ts)|ubstring)|t(?:itle-case|rim)|upcase|wrap)|ess_internals)?)|ys(?: (?:cpu|disks|host|mem|net|temp|users))?)|t(?:a(?:ble|ke(?: (?:until|while))?)|e(?:e|rm(?: (?:query|size))?)|imeit|o(?: (?:csv|html|json|m(?:d|sgpackz?)|nuon|p(?:arquet|list)|t(?:ext|oml|sv)|xml|ya?ml)|uch)?|r(?:anspose|y)|utor)|u(?:limit|n(?:ame|iq(?:-by)?)|p(?:date(?: cells)?|sert)|rl(?: (?:build-query|decode|encode|join|parse|split-query))?|se)|v(?:alues|ersion(?: check)?|iew(?: (?:blocks|files|ir|s(?:ource|pan)))?)|w(?:atch|h(?:ere|i(?:ch|le)|oami)|i(?:ndow|th-env)|rap)|zip)(?![-\\\\w])( (.*))?"},{"captures":{"1":{"patterns":[{"include":"#paren-expression"}]}},"match":"(?<=\\\\^)(?:\\\\$(\\"[^\\"]+\\"|'[^']+')|\\"[^\\"]+\\"|'[^']+')","name":"entity.name.type.external.nushell"},{"captures":{"1":{"name":"entity.name.type.external.nushell"},"2":{"patterns":[{"include":"#value"}]}},"match":"([.\\\\w]+(?:-[!.\\\\w]+)*)(?: (.*))?"},{"include":"#value"}]}},"end":"(?=[);|}])|$","name":"meta.command.nushell","patterns":[{"include":"#parameters"},{"include":"#spread"},{"include":"#value"}]},"comment":{"match":"(#.*)$","name":"comment.nushell"},"constant-keywords":{"match":"\\\\b(?:true|false|null)\\\\b","name":"constant.language.nushell"},"constant-value":{"patterns":[{"include":"#constant-keywords"},{"include":"#datetime"},{"include":"#numbers"},{"include":"#numbers-hexa"},{"include":"#numbers-octal"},{"include":"#numbers-binary"},{"include":"#binary"}]},"control-keywords":{"match":"(?<![\\\\--:A-Z\\\\\\\\_a-z])(?:break|continue|else(?: if)?|for|if|loop|mut|return|try|while)(?![\\\\--:A-Z\\\\\\\\_a-z])","name":"keyword.control.nushell"},"datetime":{"match":"\\\\b\\\\d{4}-\\\\d{2}-\\\\d{2}(?:T\\\\d{2}:\\\\d{2}:\\\\d{2}(?:\\\\.\\\\d+)?(?:\\\\+\\\\d{2}:?\\\\d{2}|Z)?)?\\\\b","name":"constant.numeric.nushell"},"define-alias":{"captures":{"1":{"name":"storage.type.alias.nushell"},"2":{"name":"entity.name.function.nushell"},"3":{"patterns":[{"include":"#operators"}]}},"match":"((?:export )?alias)\\\\s+([-!\\\\w]+)\\\\s*(=)"},"define-variable":{"captures":{"1":{"name":"keyword.other.nushell"},"2":{"name":"variable.other.nushell"},"3":{"patterns":[{"include":"#operators"}]}},"match":"(let|mut|(?:export\\\\s+)?const)\\\\s+(\\\\w+)\\\\s+(=)"},"expression":{"patterns":[{"include":"#pre-command"},{"include":"#for-loop"},{"include":"#operators"},{"match":"\\\\|","name":"keyword.control.nushell"},{"include":"#control-keywords"},{"include":"#constant-value"},{"include":"#string-raw"},{"include":"#command"},{"include":"#value"}]},"extern":{"begin":"((?:export\\\\s+)?extern)\\\\s+([-\\\\w]+|\\"[- \\\\w]+\\")","beginCaptures":{"1":{"name":"storage.type.function.nushell"},"2":{"name":"entity.name.function.nushell"}},"end":"(?<=])","endCaptures":{"0":{"name":"punctuation.definition.function.end.nushell"}},"patterns":[{"include":"#function-parameters"}]},"for-loop":{"begin":"(for)\\\\s+(\\\\$?\\\\w+)\\\\s+(in)\\\\s+(.+)\\\\s*(\\\\{)","beginCaptures":{"1":{"name":"keyword.other.nushell"},"2":{"name":"variable.other.nushell"},"3":{"name":"keyword.other.nushell"},"4":{"patterns":[{"include":"#value"}]},"5":{"name":"punctuation.section.block.begin.bracket.curly.nushell"}},"end":"}","endCaptures":{"0":{"name":"punctuation.section.block.end.bracket.curly.nushell"}},"name":"meta.for-loop.nushell","patterns":[{"include":"source.nushell"}]},"function":{"begin":"((?:export\\\\s+)?def)(?:\\\\s+(--\\\\w+(?:\\\\s+--\\\\w+)*))?\\\\s+([-\\\\w]+|\\"[- \\\\w]+\\"|'[- \\\\w]+'|\`[- \\\\w]+\`)(?:\\\\s+(--\\\\w+(?:\\\\s+--\\\\w+)*))?","beginCaptures":{"1":{"name":"storage.type.function.nushell"},"2":{"name":"storage.modifier.nushell"},"3":{"name":"entity.name.function.nushell"},"4":{"name":"storage.modifier.nushell"}},"end":"(?<=})","patterns":[{"include":"#function-parameters"},{"include":"#function-body"},{"include":"#function-inout"}]},"function-body":{"begin":"\\\\{","beginCaptures":{"0":{"name":"punctuation.definition.function.begin.nushell"}},"end":"}","endCaptures":{"0":{"name":"punctuation.definition.function.end.nushell"}},"name":"meta.function.body.nushell","patterns":[{"include":"source.nushell"}]},"function-inout":{"patterns":[{"include":"#types"},{"match":"->","name":"keyword.operator.nushell"},{"include":"#function-multiple-inout"}]},"function-multiple-inout":{"begin":"(?<=]\\\\s*)(:)\\\\s+(\\\\[)","beginCaptures":{"1":{"name":"punctuation.definition.in-out.nushell"},"2":{"name":"meta.brace.square.begin.nushell"}},"end":"]","endCaptures":{"0":{"name":"meta.brace.square.end.nushell"}},"patterns":[{"include":"#types"},{"captures":{"1":{"name":"punctuation.separator.nushell"}},"match":"\\\\s*(,)\\\\s*"},{"captures":{"1":{"name":"keyword.operator.nushell"}},"match":"\\\\s+(->)\\\\s+"}]},"function-parameter":{"patterns":[{"captures":{"1":{"name":"keyword.control.nushell"}},"match":"(-{0,2}|\\\\.{3})[-\\\\w]+(?:\\\\((-[?\\\\w])\\\\))?","name":"variable.parameter.nushell"},{"begin":"\\\\??:\\\\s*","end":"(?=\\\\s+(?:-{0,2}|\\\\.{3})[-\\\\w]+|\\\\s*(?:[]#,=@|]|$))","patterns":[{"include":"#types"}]},{"begin":"@(?=[\\"'])","end":"(?<=[\\"'])","patterns":[{"include":"#string"}]},{"begin":"=\\\\s*","end":"(?=\\\\s+-{0,2}[-\\\\w]+|\\\\s*(?:[]#,|]|$))","name":"default.value.nushell","patterns":[{"include":"#value"}]}]},"function-parameters":{"begin":"\\\\[","beginCaptures":{"0":{"name":"meta.brace.square.begin.nushell"}},"end":"]","endCaptures":{"0":{"name":"meta.brace.square.end.nushell"}},"name":"meta.function.parameters.nushell","patterns":[{"include":"#function-parameter"},{"include":"#comment"}]},"internal-variables":{"match":"\\\\$(?:nu|env)\\\\b","name":"variable.language.nushell"},"keyword":{"match":"def(?:-env)?","name":"keyword.other.nushell"},"module":{"begin":"((?:export\\\\s+)?module)\\\\s+([-\\\\w]+)\\\\s*\\\\{","beginCaptures":{"1":{"name":"storage.type.module.nushell"},"2":{"name":"entity.name.namespace.nushell"}},"end":"}","endCaptures":{"0":{"name":"punctuation.definition.module.end.nushell"}},"name":"meta.module.nushell","patterns":[{"include":"source.nushell"}]},"numbers":{"match":"(?<![-\\\\w])_*+[-+]?_*+(?:(?i:NaN|infinity|inf)_*+|(?:\\\\d[_\\\\d]*+\\\\.?|\\\\._*+\\\\d)[_\\\\d]*+(?i:E_*+[-+]?_*+\\\\d[_\\\\d]*+)?)(?i:ns|us|µs|ms|sec|min|hr|day|wk|b|kb|mb|gb|tb|pt|eb|zb|kib|mib|gib|tib|pit|eib|zib)?(?:(?![.\\\\w])|(?=\\\\.\\\\.))","name":"constant.numeric.nushell"},"numbers-binary":{"match":"(?<![-\\\\w])_*+0_*+b_*+[01][01_]*+(?![.\\\\w])","name":"constant.numeric.nushell"},"numbers-hexa":{"match":"(?<![-\\\\w])_*+0_*+x_*+\\\\h[_\\\\h]*+(?![.\\\\w])","name":"constant.numeric.nushell"},"numbers-octal":{"match":"(?<![-\\\\w])_*+0_*+o_*+[0-7][0-7_]*+(?![.\\\\w])","name":"constant.numeric.nushell"},"operators":{"patterns":[{"include":"#operators-word"},{"include":"#operators-symbols"},{"include":"#ranges"}]},"operators-symbols":{"match":"(?<= )(?:[-*+/]=?|//|\\\\*\\\\*|!=|[<=>]=?|[!=]~|\\\\+\\\\+=?)(?= |$)","name":"keyword.control.nushell"},"operators-word":{"match":"(?<=[ (])(?:mod|in|not-(?:in|like|has)|not|and|or|xor|bit-(?:or|and|xor|shl|shr)|starts-with|ends-with|like|has)(?=[ )]|$)","name":"keyword.control.nushell"},"parameters":{"captures":{"1":{"name":"keyword.control.nushell"}},"match":"(?<=\\\\s)(-{1,2})[-\\\\w]+","name":"variable.parameter.nushell"},"paren-expression":{"begin":"\\\\(","beginCaptures":{"0":{"name":"meta.brace.round.begin.nushell"}},"end":"\\\\)","endCaptures":{"0":{"name":"meta.brace.round.end.nushell"}},"name":"meta.expression.parenthesis.nushell","patterns":[{"include":"#expression"}]},"pre-command":{"begin":"(\\\\w+)(=)","beginCaptures":{"1":{"name":"variable.other.nushell"},"2":{"patterns":[{"include":"#operators"}]}},"end":"(?=\\\\s+)","patterns":[{"include":"#value"}]},"ranges":{"match":"\\\\.\\\\.<?","name":"keyword.control.nushell"},"spread":{"match":"\\\\.\\\\.\\\\.(?=[^]}\\\\s])","name":"keyword.control.nushell"},"string":{"patterns":[{"include":"#string-single-quote"},{"include":"#string-backtick"},{"include":"#string-double-quote"},{"include":"#string-interpolated-double"},{"include":"#string-interpolated-single"},{"include":"#string-raw"},{"include":"#string-bare"}]},"string-backtick":{"begin":"\`","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.nushell"}},"end":"\`","endCaptures":{"0":{"name":"punctuation.definition.string.end.nushell"}},"name":"string.quoted.single.nushell"},"string-bare":{"match":"[^\\"#$'(,;\\\\[{|\\\\s][^]\\"'(),;\\\\[{|}\\\\s]*","name":"string.bare.nushell"},"string-double-quote":{"begin":"\\"","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.nushell"}},"end":"\\"","endCaptures":{"0":{"name":"punctuation.definition.string.end.nushell"}},"name":"string.quoted.double.nushell","patterns":[{"match":"\\\\w+"},{"include":"#string-escape"}]},"string-escape":{"match":"\\\\\\\\(?:[\\"'/\\\\\\\\bfnrt]|u\\\\h{4})","name":"constant.character.escape.nushell"},"string-interpolated-double":{"begin":"\\\\$\\"","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.nushell"}},"end":"\\"","endCaptures":{"0":{"name":"punctuation.definition.string.end.nushell"}},"name":"string.interpolated.double.nushell","patterns":[{"match":"\\\\\\\\[()]","name":"constant.character.escape.nushell"},{"include":"#string-escape"},{"include":"#paren-expression"}]},"string-interpolated-single":{"begin":"\\\\$'","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.nushell"}},"end":"'","endCaptures":{"0":{"name":"punctuation.definition.string.end.nushell"}},"name":"string.interpolated.single.nushell","patterns":[{"include":"#paren-expression"}]},"string-raw":{"begin":"r(#+)'","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.nushell"}},"end":"'\\\\1","endCaptures":{"0":{"name":"punctuation.definition.string.end.nushell"}},"name":"string.raw.nushell"},"string-single-quote":{"begin":"'","beginCaptures":{"0":{"name":"punctuation.definition.string.begin.nushell"}},"end":"'","endCaptures":{"0":{"name":"punctuation.definition.string.end.nushell"}},"name":"string.quoted.single.nushell"},"table":{"begin":"\\\\[","beginCaptures":{"0":{"name":"meta.brace.square.begin.nushell"}},"end":"]","endCaptures":{"0":{"name":"meta.brace.square.end.nushell"}},"name":"meta.table.nushell","patterns":[{"include":"#spread"},{"include":"#value"},{"match":",","name":"punctuation.separator.nushell"}]},"types":{"patterns":[{"begin":"\\\\b(list)\\\\s*<","beginCaptures":{"1":{"name":"entity.name.type.nushell"}},"end":">","name":"meta.list.nushell","patterns":[{"include":"#types"}]},{"begin":"\\\\b(record)\\\\s*<","beginCaptures":{"1":{"name":"entity.name.type.nushell"}},"end":">","name":"meta.record.nushell","patterns":[{"captures":{"1":{"name":"variable.parameter.nushell"}},"match":"([-\\\\w]+|\\"[- \\\\w]+\\"|'[^']+')\\\\s*:\\\\s*"},{"include":"#types"}]},{"match":"\\\\b(\\\\w+)\\\\b","name":"entity.name.type.nushell"}]},"use-module":{"patterns":[{"captures":{"1":{"name":"keyword.control.import.nushell"},"2":{"name":"entity.name.namespace.nushell"},"3":{"name":"keyword.other.nushell"}},"match":"^\\\\s*((?:export )?use)\\\\s+([-\\\\w]+|\\"[- \\\\w]+\\"|'[- \\\\w]+')(?:\\\\s+([-\\\\w]+|\\"[- \\\\w]+\\"|'[- \\\\w]+'|\\\\*))?\\\\s*;?$"},{"begin":"^\\\\s*((?:export )?use)\\\\s+([-\\\\w]+|\\"[- \\\\w]+\\"|'[- \\\\w]+')\\\\s*\\\\[","beginCaptures":{"1":{"name":"keyword.control.import.nushell"},"2":{"name":"entity.name.namespace.nushell"}},"end":"(])\\\\s*;?\\\\s*$","endCaptures":{"1":{"name":"meta.brace.square.end.nushell"}},"patterns":[{"captures":{"1":{"name":"keyword.other.nushell"}},"match":"([-\\\\w]+|\\"[- \\\\w]+\\"|'[- \\\\w]+'|\\\\*),?"},{"include":"#comment"}]},{"captures":{"2":{"name":"keyword.control.import.nushell"},"3":{"name":"string.bare.nushell","patterns":[{"captures":{"1":{"name":"entity.name.namespace.nushell"}},"match":"([- \\\\w]+)(?:\\\\.nu)?(?=$|[\\"'])"}]},"4":{"name":"keyword.other.nushell"}},"match":"(?<path>(?:[/\\\\\\\\]|~[/\\\\\\\\]|\\\\.\\\\.?[/\\\\\\\\])?(?:[^/\\\\\\\\]+[/\\\\\\\\])*[- \\\\w]+(?:\\\\.nu)?){0}^\\\\s*((?:export )?use)\\\\s+(\\"\\\\g<path>\\"|'\\\\g<path>'|(?![\\"'])\\\\g<path>)(?:\\\\s+([-\\\\w]+|\\"[- \\\\w]+\\"|'[^']+'|\\\\*))?\\\\s*;?$"},{"begin":"(?<path>(?:[/\\\\\\\\]|~[/\\\\\\\\]|\\\\.\\\\.?[/\\\\\\\\])?(?:[^/\\\\\\\\]+[/\\\\\\\\])*[- \\\\w]+(?:\\\\.nu)?){0}^\\\\s*((?:export )?use)\\\\s+(\\"\\\\g<path>\\"|'\\\\g<path>'|(?![\\"'])\\\\g<path>)\\\\s+\\\\[","beginCaptures":{"2":{"name":"keyword.control.import.nushell"},"3":{"name":"string.bare.nushell","patterns":[{"captures":{"1":{"name":"entity.name.namespace.nushell"}},"match":"([- \\\\w]+)(?:\\\\.nu)?(?=$|[\\"'])"}]}},"end":"(])\\\\s*;?\\\\s*$","endCaptures":{"1":{"name":"meta.brace.square.end.nushell"}},"patterns":[{"captures":{"0":{"name":"keyword.other.nushell"}},"match":"([-\\\\w]+|\\"[- \\\\w]+\\"|'[- \\\\w]+'|\\\\*),?"},{"include":"#comment"}]},{"captures":{"0":{"name":"keyword.control.import.nushell"}},"match":"^\\\\s*(?:export )?use\\\\b"}]},"value":{"patterns":[{"include":"#variables"},{"include":"#variable-fields"},{"include":"#control-keywords"},{"include":"#constant-value"},{"include":"#table"},{"include":"#operators"},{"include":"#paren-expression"},{"include":"#braced-expression"},{"include":"#string"},{"include":"#comment"}]},"variable-fields":{"match":"(?<=[])}])(?:\\\\.(?:[-\\\\w]+|\\"[- \\\\w]+\\"))+","name":"variable.other.nushell"},"variables":{"captures":{"1":{"patterns":[{"include":"#internal-variables"},{"match":"\\\\$.+","name":"variable.other.nushell"}]},"2":{"name":"variable.other.nushell"}},"match":"(\\\\$[0-9A-Z_a-z]+)((?:\\\\.(?:[-\\\\w]+|\\"[- \\\\w]+\\"))*)"}},"scopeName":"source.nushell","aliases":["nu"]}`,
|
|
9
|
+
),
|
|
10
|
+
),
|
|
11
|
+
n = [e];
|
|
12
|
+
export { n as default };
|
|
13
|
+
//# sourceMappingURL=nushell-Cz2AlsmD.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"nushell-Cz2AlsmD.js","sources":["../../../../node_modules/@shikijs/langs/dist/nushell.mjs"],"sourcesContent":["const lang = Object.freeze(JSON.parse(\"{\\\"displayName\\\":\\\"nushell\\\",\\\"name\\\":\\\"nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#define-variable\\\"},{\\\"include\\\":\\\"#define-alias\\\"},{\\\"include\\\":\\\"#function\\\"},{\\\"include\\\":\\\"#extern\\\"},{\\\"include\\\":\\\"#module\\\"},{\\\"include\\\":\\\"#use-module\\\"},{\\\"include\\\":\\\"#expression\\\"},{\\\"include\\\":\\\"#comment\\\"}],\\\"repository\\\":{\\\"binary\\\":{\\\"begin\\\":\\\"\\\\\\\\b(0x)(\\\\\\\\[)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"constant.numeric.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"meta.brace.square.begin.nushell\\\"}},\\\"end\\\":\\\"]\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.square.begin.nushell\\\"}},\\\"name\\\":\\\"constant.binary.nushell\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\h{2}\\\",\\\"name\\\":\\\"constant.numeric.nushell\\\"}]},\\\"braced-expression\\\":{\\\"begin\\\":\\\"\\\\\\\\{\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.block.begin.bracket.curly.nushell\\\"}},\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.block.end.bracket.curly.nushell\\\"}},\\\"name\\\":\\\"meta.expression.braced.nushell\\\",\\\"patterns\\\":[{\\\"begin\\\":\\\"(?<=\\\\\\\\{)\\\\\\\\s*\\\\\\\\|\\\",\\\"end\\\":\\\"\\\\\\\\|\\\",\\\"name\\\":\\\"meta.closure.parameters.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#function-parameter\\\"}]},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.control.nushell\\\"}},\\\"match\\\":\\\"(\\\\\\\\w+)\\\\\\\\s*(:)\\\\\\\\s*\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.other.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#paren-expression\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"keyword.control.nushell\\\"}},\\\"match\\\":\\\"(\\\\\\\\$\\\\\\\"((?:[^\\\\\\\"\\\\\\\\\\\\\\\\]|\\\\\\\\\\\\\\\\.)*)\\\\\\\")\\\\\\\\s*(:)\\\\\\\\s*\\\",\\\"name\\\":\\\"meta.record-entry.nushell\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.control.nushell\\\"}},\\\"match\\\":\\\"(\\\\\\\"(?:[^\\\\\\\"\\\\\\\\\\\\\\\\]|\\\\\\\\\\\\\\\\.)*\\\\\\\")\\\\\\\\s*(:)\\\\\\\\s*\\\",\\\"name\\\":\\\"meta.record-entry.nushell\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.other.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#paren-expression\\\"}]},\\\"3\\\":{\\\"name\\\":\\\"keyword.control.nushell\\\"}},\\\"match\\\":\\\"(\\\\\\\\$'([^']*)')\\\\\\\\s*(:)\\\\\\\\s*\\\",\\\"name\\\":\\\"meta.record-entry.nushell\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"keyword.control.nushell\\\"}},\\\"match\\\":\\\"('[^']*')\\\\\\\\s*(:)\\\\\\\\s*\\\",\\\"name\\\":\\\"meta.record-entry.nushell\\\"},{\\\"include\\\":\\\"#spread\\\"},{\\\"include\\\":\\\"source.nushell\\\"}]},\\\"command\\\":{\\\"begin\\\":\\\"(?<!\\\\\\\\w)(?:(\\\\\\\\^)|(?![$0-9]))([!.\\\\\\\\w]+(?: (?!-)[-!.\\\\\\\\w]+(?:(?=[ )])|$)|[-!.\\\\\\\\w]+)*|(?<=\\\\\\\\^)\\\\\\\\$?(?:\\\\\\\"[^\\\\\\\"]+\\\\\\\"|'[^']+'))\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.operator.nushell\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#control-keywords\\\"},{\\\"captures\\\":{\\\"0\\\":{\\\"name\\\":\\\"keyword.other.builtin.nushell\\\"}},\\\"match\\\":\\\"(?:ansi|char) \\\\\\\\w+\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.builtin.nushell\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#value\\\"}]}},\\\"match\\\":\\\"(a(?:l(?:ias|l)|n(?:si(?: (?:gradient|link|strip))?|y)|ppend|st|ttr(?: (?:category|deprecated|example|search-terms))?)|b(?:its(?: (?:and|not|or|ro[lr]|sh[lr]|xor))?|reak|ytes(?: (?:a(?:dd|t)|build|collect|ends-with|index-of|length|re(?:move|place|verse)|s(?:plit|tarts-with)))?)|c(?:al|d|h(?:ar|unk(?:-by|s))|lear|o(?:l(?:lect|umns)|m(?:mandline(?: (?:edit|get-cursor|set-cursor))?|p(?:act|lete))|n(?:fig(?: (?:env|flatten|nu|reset|use-colors))?|st|tinue))|p)|d(?:ate(?: (?:f(?:ormat|rom-human)|humanize|list-timezone|now|to-timezone))?|e(?:bug(?: (?:e(?:nv|xperimental-options)|info|profile))?|code(?: (?:base(?:32(?:hex)?|64)|hex))?|f(?:ault)?|scribe|tect(?: columns)?)|o|rop(?: (?:column|nth))?|t(?: (?:add|diff|format|now|part|to|utcnow))?|u)|e(?:ach(?: while)?|cho|moji|n(?:code(?: (?:base(?:32(?:hex)?|64)|hex))?|umerate)|rror(?: make)?|very|x(?:ec|it|p(?:l(?:ain|ore)|ort(?: (?:alias|const|def|extern|module|use)|-env)?)|tern))|f(?:i(?:l(?:[el]|ter)|nd|rst)|latten|or(?:mat(?: (?:bits|d(?:ate|uration)|filesize|number|pattern))?)?|rom(?: (?:csv|eml|i(?:cs|ni)|json|msgpackz?|nuon|ods|p(?:arquet|list)|ssv|t(?:oml|sv)|url|vcf|x(?:lsx|ml)|ya?ml))?)|g(?:e(?:nerate|t)|lob|r(?:id|oup-by)|stat)|h(?:ash(?: (?:md5|sha256))?|e(?:aders|lp(?: (?:aliases|commands|e(?:scapes|xterns)|modules|operators|pipe-and-redirect))?)|i(?:de(?:-env)?|sto(?:gram|ry(?: (?:import|session))?))|ttp(?: (?:delete|get|head|options|p(?:atch|ost|ut)))?)|i(?:f|gnore|n(?:c|put(?: list(?:en)?)?|s(?:ert|pect)|t(?:erleave|o(?: (?:b(?:inary|ool)|cell-path|d(?:atetime|uration)|f(?:ilesize|loat)|glob|int|record|s(?:qlite|tring)|value))?))|s-(?:admin|empty|not-empty|terminal)|tems)|j(?:o(?:b(?: (?:flush|id|kill|list|recv|s(?:end|pawn)|tag|unfreeze))?|in)|son path|walk)|k(?:eybindings(?: (?:default|list(?:en)?))?|ill)|l(?:ast|e(?:ngth|t(?:-env)?)|ines|o(?:ad-env|op)|s)|m(?:at(?:ch|h(?: (?:a(?:bs|rc(?:cosh?|sinh?|tanh?)|vg)|c(?:eil|osh?)|exp|floor|l(?:n|og)|m(?:ax|edian|in|ode)|product|round|s(?:inh?|qrt|tddev|um)|tanh?|variance))?)|e(?:rge(?: deep)?|tadata(?: (?:access|set))?)|k(?:dir|temp)|o(?:dule|ve)|ut|v)|nu-(?:check|highlight)|o(?:pen|verlay(?: (?:hide|list|new|use))?)|p(?:a(?:nic|r(?:-each|se)|th(?: (?:basename|dirname|ex(?:ists|pand)|join|parse|relative-to|s(?:elf|plit)|type))?)|lugin(?: (?:add|list|rm|stop|use))?|o(?:lars(?: (?:a(?:gg(?:-groups)?|ll-(?:false|true)|ppend|rg-(?:m(?:ax|in)|sort|true|unique|where)|s(?:-date(?:time)?)?)|c(?:a(?:che|st)|o(?:l(?:lect|umns)?|n(?:cat(?:-str)?|tains|vert-time-zone)|unt(?:-null)?)|u(?:mulative|t))|d(?:atepart|ecimal|rop(?:-(?:duplicates|nulls))?|ummies)|exp(?:lode|r-not)|f(?:etch|i(?:l(?:l-n(?:an|ull)|ter(?:-with)?)|rst)|latten)|g(?:et(?:-(?:day|hour|m(?:inute|onth)|nanosecond|ordinal|second|week(?:day)?|year))?|roup-by)|horizontal|i(?:mplode|nt(?:eger|o-(?:d(?:f|type)|lazy|nu|repr|schema))|s-(?:duplicated|in|n(?:ot-n|)ull|unique))|join(?:-where)?|l(?:ast|en|i(?:st-contains|t)|owercase)|m(?:a(?:th|x)|e(?:an|dian)|in)|n(?:-unique|ot)|o(?:pen|therwise|ver)|p(?:ivot|rofile)|q(?:cut|u(?:antile|ery))|r(?:e(?:name|place(?:-time-zone)?|verse)|olling)|s(?:a(?:mple|ve)|chema|e(?:lect|t(?:-with-idx)?)|h(?:ape|ift)|lice|ort-by|t(?:d|ore-(?:get|ls|rm)|r(?:-(?:join|lengths|replace(?:-all)?|s(?:lice|plit|trip-chars))|ftime|uct-json-encode))|um(?:mary)?)|t(?:ake|runcate)|u(?:n(?:ique|nest|pivot)|ppercase)|va(?:lue-counts|r)|w(?:hen|ith-column)))?|rt)|r(?:epend|int)|s)|query(?: (?:db|git|json|web(?:page-info)?|xml))?|r(?:andom(?: (?:b(?:inary|ool)|chars|dice|float|int|uuid))?|e(?:duce|g(?:ex|istry(?: query)?)|ject|name|turn|verse)|m|o(?:ll(?: (?:down|left|right|up))?|tate)|un-(?:ex|in)ternal)|s(?:ave|c(?:hema|ope(?: (?:aliases|commands|e(?:ngine-stats|xterns)|modules|variables))?)|e(?:lect|q(?: (?:char|date))?)|huffle|kip(?: (?:until|while))?|l(?:eep|ice)|o(?:rt(?:-by)?|urce(?:-env)?)|plit(?: (?:c(?:ell-path|hars|olumn)|list|row|words))?|t(?:art|or(?: (?:create|delete|export|i(?:mport|nsert)|open|reset|update))?|r(?: (?:c(?:a(?:mel-case|pitalize)|o(?:mpress|ntains))|d(?:e(?:compress|dent|unicode)|istance|owncase)|e(?:nds-with|xpand)|inde(?:nt|x-of)|join|kebab-case|length|pascal-case|re(?:place|verse)|s(?:creaming-snake-case|hl-(?:quote|split)|imilarity|lug|nake-case|ta(?:rts-with|ts)|ubstring)|t(?:itle-case|rim)|upcase|wrap)|ess_internals)?)|ys(?: (?:cpu|disks|host|mem|net|temp|users))?)|t(?:a(?:ble|ke(?: (?:until|while))?)|e(?:e|rm(?: (?:query|size))?)|imeit|o(?: (?:csv|html|json|m(?:d|sgpackz?)|nuon|p(?:arquet|list)|t(?:ext|oml|sv)|xml|ya?ml)|uch)?|r(?:anspose|y)|utor)|u(?:limit|n(?:ame|iq(?:-by)?)|p(?:date(?: cells)?|sert)|rl(?: (?:build-query|decode|encode|join|parse|split-query))?|se)|v(?:alues|ersion(?: check)?|iew(?: (?:blocks|files|ir|s(?:ource|pan)))?)|w(?:atch|h(?:ere|i(?:ch|le)|oami)|i(?:ndow|th-env)|rap)|zip)(?![-\\\\\\\\w])( (.*))?\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#paren-expression\\\"}]}},\\\"match\\\":\\\"(?<=\\\\\\\\^)(?:\\\\\\\\$(\\\\\\\"[^\\\\\\\"]+\\\\\\\"|'[^']+')|\\\\\\\"[^\\\\\\\"]+\\\\\\\"|'[^']+')\\\",\\\"name\\\":\\\"entity.name.type.external.nushell\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.type.external.nushell\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#value\\\"}]}},\\\"match\\\":\\\"([.\\\\\\\\w]+(?:-[!.\\\\\\\\w]+)*)(?: (.*))?\\\"},{\\\"include\\\":\\\"#value\\\"}]}},\\\"end\\\":\\\"(?=[);|}])|$\\\",\\\"name\\\":\\\"meta.command.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#parameters\\\"},{\\\"include\\\":\\\"#spread\\\"},{\\\"include\\\":\\\"#value\\\"}]},\\\"comment\\\":{\\\"match\\\":\\\"(#.*)$\\\",\\\"name\\\":\\\"comment.nushell\\\"},\\\"constant-keywords\\\":{\\\"match\\\":\\\"\\\\\\\\b(?:true|false|null)\\\\\\\\b\\\",\\\"name\\\":\\\"constant.language.nushell\\\"},\\\"constant-value\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#constant-keywords\\\"},{\\\"include\\\":\\\"#datetime\\\"},{\\\"include\\\":\\\"#numbers\\\"},{\\\"include\\\":\\\"#numbers-hexa\\\"},{\\\"include\\\":\\\"#numbers-octal\\\"},{\\\"include\\\":\\\"#numbers-binary\\\"},{\\\"include\\\":\\\"#binary\\\"}]},\\\"control-keywords\\\":{\\\"match\\\":\\\"(?<![\\\\\\\\--:A-Z\\\\\\\\\\\\\\\\_a-z])(?:break|continue|else(?: if)?|for|if|loop|mut|return|try|while)(?![\\\\\\\\--:A-Z\\\\\\\\\\\\\\\\_a-z])\\\",\\\"name\\\":\\\"keyword.control.nushell\\\"},\\\"datetime\\\":{\\\"match\\\":\\\"\\\\\\\\b\\\\\\\\d{4}-\\\\\\\\d{2}-\\\\\\\\d{2}(?:T\\\\\\\\d{2}:\\\\\\\\d{2}:\\\\\\\\d{2}(?:\\\\\\\\.\\\\\\\\d+)?(?:\\\\\\\\+\\\\\\\\d{2}:?\\\\\\\\d{2}|Z)?)?\\\\\\\\b\\\",\\\"name\\\":\\\"constant.numeric.nushell\\\"},\\\"define-alias\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.alias.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.function.nushell\\\"},\\\"3\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#operators\\\"}]}},\\\"match\\\":\\\"((?:export )?alias)\\\\\\\\s+([-!\\\\\\\\w]+)\\\\\\\\s*(=)\\\"},\\\"define-variable\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.other.nushell\\\"},\\\"3\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#operators\\\"}]}},\\\"match\\\":\\\"(let|mut|(?:export\\\\\\\\s+)?const)\\\\\\\\s+(\\\\\\\\w+)\\\\\\\\s+(=)\\\"},\\\"expression\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#pre-command\\\"},{\\\"include\\\":\\\"#for-loop\\\"},{\\\"include\\\":\\\"#operators\\\"},{\\\"match\\\":\\\"\\\\\\\\|\\\",\\\"name\\\":\\\"keyword.control.nushell\\\"},{\\\"include\\\":\\\"#control-keywords\\\"},{\\\"include\\\":\\\"#constant-value\\\"},{\\\"include\\\":\\\"#string-raw\\\"},{\\\"include\\\":\\\"#command\\\"},{\\\"include\\\":\\\"#value\\\"}]},\\\"extern\\\":{\\\"begin\\\":\\\"((?:export\\\\\\\\s+)?extern)\\\\\\\\s+([-\\\\\\\\w]+|\\\\\\\"[- \\\\\\\\w]+\\\\\\\")\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.function.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.function.nushell\\\"}},\\\"end\\\":\\\"(?<=])\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.function.end.nushell\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#function-parameters\\\"}]},\\\"for-loop\\\":{\\\"begin\\\":\\\"(for)\\\\\\\\s+(\\\\\\\\$?\\\\\\\\w+)\\\\\\\\s+(in)\\\\\\\\s+(.+)\\\\\\\\s*(\\\\\\\\{)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"variable.other.nushell\\\"},\\\"3\\\":{\\\"name\\\":\\\"keyword.other.nushell\\\"},\\\"4\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#value\\\"}]},\\\"5\\\":{\\\"name\\\":\\\"punctuation.section.block.begin.bracket.curly.nushell\\\"}},\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.section.block.end.bracket.curly.nushell\\\"}},\\\"name\\\":\\\"meta.for-loop.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.nushell\\\"}]},\\\"function\\\":{\\\"begin\\\":\\\"((?:export\\\\\\\\s+)?def)(?:\\\\\\\\s+(--\\\\\\\\w+(?:\\\\\\\\s+--\\\\\\\\w+)*))?\\\\\\\\s+([-\\\\\\\\w]+|\\\\\\\"[- \\\\\\\\w]+\\\\\\\"|'[- \\\\\\\\w]+'|`[- \\\\\\\\w]+`)(?:\\\\\\\\s+(--\\\\\\\\w+(?:\\\\\\\\s+--\\\\\\\\w+)*))?\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.function.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"storage.modifier.nushell\\\"},\\\"3\\\":{\\\"name\\\":\\\"entity.name.function.nushell\\\"},\\\"4\\\":{\\\"name\\\":\\\"storage.modifier.nushell\\\"}},\\\"end\\\":\\\"(?<=})\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#function-parameters\\\"},{\\\"include\\\":\\\"#function-body\\\"},{\\\"include\\\":\\\"#function-inout\\\"}]},\\\"function-body\\\":{\\\"begin\\\":\\\"\\\\\\\\{\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.function.begin.nushell\\\"}},\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.function.end.nushell\\\"}},\\\"name\\\":\\\"meta.function.body.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.nushell\\\"}]},\\\"function-inout\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#types\\\"},{\\\"match\\\":\\\"->\\\",\\\"name\\\":\\\"keyword.operator.nushell\\\"},{\\\"include\\\":\\\"#function-multiple-inout\\\"}]},\\\"function-multiple-inout\\\":{\\\"begin\\\":\\\"(?<=]\\\\\\\\s*)(:)\\\\\\\\s+(\\\\\\\\[)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.definition.in-out.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"meta.brace.square.begin.nushell\\\"}},\\\"end\\\":\\\"]\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.square.end.nushell\\\"}},\\\"patterns\\\":[{\\\"include\\\":\\\"#types\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"punctuation.separator.nushell\\\"}},\\\"match\\\":\\\"\\\\\\\\s*(,)\\\\\\\\s*\\\"},{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.operator.nushell\\\"}},\\\"match\\\":\\\"\\\\\\\\s+(->)\\\\\\\\s+\\\"}]},\\\"function-parameter\\\":{\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.nushell\\\"}},\\\"match\\\":\\\"(-{0,2}|\\\\\\\\.{3})[-\\\\\\\\w]+(?:\\\\\\\\((-[?\\\\\\\\w])\\\\\\\\))?\\\",\\\"name\\\":\\\"variable.parameter.nushell\\\"},{\\\"begin\\\":\\\"\\\\\\\\??:\\\\\\\\s*\\\",\\\"end\\\":\\\"(?=\\\\\\\\s+(?:-{0,2}|\\\\\\\\.{3})[-\\\\\\\\w]+|\\\\\\\\s*(?:[]#,=@|]|$))\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#types\\\"}]},{\\\"begin\\\":\\\"@(?=[\\\\\\\"'])\\\",\\\"end\\\":\\\"(?<=[\\\\\\\"'])\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#string\\\"}]},{\\\"begin\\\":\\\"=\\\\\\\\s*\\\",\\\"end\\\":\\\"(?=\\\\\\\\s+-{0,2}[-\\\\\\\\w]+|\\\\\\\\s*(?:[]#,|]|$))\\\",\\\"name\\\":\\\"default.value.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#value\\\"}]}]},\\\"function-parameters\\\":{\\\"begin\\\":\\\"\\\\\\\\[\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.square.begin.nushell\\\"}},\\\"end\\\":\\\"]\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.square.end.nushell\\\"}},\\\"name\\\":\\\"meta.function.parameters.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#function-parameter\\\"},{\\\"include\\\":\\\"#comment\\\"}]},\\\"internal-variables\\\":{\\\"match\\\":\\\"\\\\\\\\$(?:nu|env)\\\\\\\\b\\\",\\\"name\\\":\\\"variable.language.nushell\\\"},\\\"keyword\\\":{\\\"match\\\":\\\"def(?:-env)?\\\",\\\"name\\\":\\\"keyword.other.nushell\\\"},\\\"module\\\":{\\\"begin\\\":\\\"((?:export\\\\\\\\s+)?module)\\\\\\\\s+([-\\\\\\\\w]+)\\\\\\\\s*\\\\\\\\{\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"storage.type.module.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.namespace.nushell\\\"}},\\\"end\\\":\\\"}\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.module.end.nushell\\\"}},\\\"name\\\":\\\"meta.module.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"source.nushell\\\"}]},\\\"numbers\\\":{\\\"match\\\":\\\"(?<![-\\\\\\\\w])_*+[-+]?_*+(?:(?i:NaN|infinity|inf)_*+|(?:\\\\\\\\d[_\\\\\\\\d]*+\\\\\\\\.?|\\\\\\\\._*+\\\\\\\\d)[_\\\\\\\\d]*+(?i:E_*+[-+]?_*+\\\\\\\\d[_\\\\\\\\d]*+)?)(?i:ns|us|µs|ms|sec|min|hr|day|wk|b|kb|mb|gb|tb|pt|eb|zb|kib|mib|gib|tib|pit|eib|zib)?(?:(?![.\\\\\\\\w])|(?=\\\\\\\\.\\\\\\\\.))\\\",\\\"name\\\":\\\"constant.numeric.nushell\\\"},\\\"numbers-binary\\\":{\\\"match\\\":\\\"(?<![-\\\\\\\\w])_*+0_*+b_*+[01][01_]*+(?![.\\\\\\\\w])\\\",\\\"name\\\":\\\"constant.numeric.nushell\\\"},\\\"numbers-hexa\\\":{\\\"match\\\":\\\"(?<![-\\\\\\\\w])_*+0_*+x_*+\\\\\\\\h[_\\\\\\\\h]*+(?![.\\\\\\\\w])\\\",\\\"name\\\":\\\"constant.numeric.nushell\\\"},\\\"numbers-octal\\\":{\\\"match\\\":\\\"(?<![-\\\\\\\\w])_*+0_*+o_*+[0-7][0-7_]*+(?![.\\\\\\\\w])\\\",\\\"name\\\":\\\"constant.numeric.nushell\\\"},\\\"operators\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#operators-word\\\"},{\\\"include\\\":\\\"#operators-symbols\\\"},{\\\"include\\\":\\\"#ranges\\\"}]},\\\"operators-symbols\\\":{\\\"match\\\":\\\"(?<= )(?:[-*+/]=?|//|\\\\\\\\*\\\\\\\\*|!=|[<=>]=?|[!=]~|\\\\\\\\+\\\\\\\\+=?)(?= |$)\\\",\\\"name\\\":\\\"keyword.control.nushell\\\"},\\\"operators-word\\\":{\\\"match\\\":\\\"(?<=[ (])(?:mod|in|not-(?:in|like|has)|not|and|or|xor|bit-(?:or|and|xor|shl|shr)|starts-with|ends-with|like|has)(?=[ )]|$)\\\",\\\"name\\\":\\\"keyword.control.nushell\\\"},\\\"parameters\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.nushell\\\"}},\\\"match\\\":\\\"(?<=\\\\\\\\s)(-{1,2})[-\\\\\\\\w]+\\\",\\\"name\\\":\\\"variable.parameter.nushell\\\"},\\\"paren-expression\\\":{\\\"begin\\\":\\\"\\\\\\\\(\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.round.begin.nushell\\\"}},\\\"end\\\":\\\"\\\\\\\\)\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.round.end.nushell\\\"}},\\\"name\\\":\\\"meta.expression.parenthesis.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#expression\\\"}]},\\\"pre-command\\\":{\\\"begin\\\":\\\"(\\\\\\\\w+)(=)\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.other.nushell\\\"},\\\"2\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#operators\\\"}]}},\\\"end\\\":\\\"(?=\\\\\\\\s+)\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#value\\\"}]},\\\"ranges\\\":{\\\"match\\\":\\\"\\\\\\\\.\\\\\\\\.<?\\\",\\\"name\\\":\\\"keyword.control.nushell\\\"},\\\"spread\\\":{\\\"match\\\":\\\"\\\\\\\\.\\\\\\\\.\\\\\\\\.(?=[^]}\\\\\\\\s])\\\",\\\"name\\\":\\\"keyword.control.nushell\\\"},\\\"string\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#string-single-quote\\\"},{\\\"include\\\":\\\"#string-backtick\\\"},{\\\"include\\\":\\\"#string-double-quote\\\"},{\\\"include\\\":\\\"#string-interpolated-double\\\"},{\\\"include\\\":\\\"#string-interpolated-single\\\"},{\\\"include\\\":\\\"#string-raw\\\"},{\\\"include\\\":\\\"#string-bare\\\"}]},\\\"string-backtick\\\":{\\\"begin\\\":\\\"`\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.nushell\\\"}},\\\"end\\\":\\\"`\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.nushell\\\"}},\\\"name\\\":\\\"string.quoted.single.nushell\\\"},\\\"string-bare\\\":{\\\"match\\\":\\\"[^\\\\\\\"#$'(,;\\\\\\\\[{|\\\\\\\\s][^]\\\\\\\"'(),;\\\\\\\\[{|}\\\\\\\\s]*\\\",\\\"name\\\":\\\"string.bare.nushell\\\"},\\\"string-double-quote\\\":{\\\"begin\\\":\\\"\\\\\\\"\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.nushell\\\"}},\\\"end\\\":\\\"\\\\\\\"\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.nushell\\\"}},\\\"name\\\":\\\"string.quoted.double.nushell\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\w+\\\"},{\\\"include\\\":\\\"#string-escape\\\"}]},\\\"string-escape\\\":{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\(?:[\\\\\\\"'/\\\\\\\\\\\\\\\\bfnrt]|u\\\\\\\\h{4})\\\",\\\"name\\\":\\\"constant.character.escape.nushell\\\"},\\\"string-interpolated-double\\\":{\\\"begin\\\":\\\"\\\\\\\\$\\\\\\\"\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.nushell\\\"}},\\\"end\\\":\\\"\\\\\\\"\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.nushell\\\"}},\\\"name\\\":\\\"string.interpolated.double.nushell\\\",\\\"patterns\\\":[{\\\"match\\\":\\\"\\\\\\\\\\\\\\\\[()]\\\",\\\"name\\\":\\\"constant.character.escape.nushell\\\"},{\\\"include\\\":\\\"#string-escape\\\"},{\\\"include\\\":\\\"#paren-expression\\\"}]},\\\"string-interpolated-single\\\":{\\\"begin\\\":\\\"\\\\\\\\$'\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.nushell\\\"}},\\\"end\\\":\\\"'\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.nushell\\\"}},\\\"name\\\":\\\"string.interpolated.single.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#paren-expression\\\"}]},\\\"string-raw\\\":{\\\"begin\\\":\\\"r(#+)'\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.nushell\\\"}},\\\"end\\\":\\\"'\\\\\\\\1\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.nushell\\\"}},\\\"name\\\":\\\"string.raw.nushell\\\"},\\\"string-single-quote\\\":{\\\"begin\\\":\\\"'\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.begin.nushell\\\"}},\\\"end\\\":\\\"'\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"punctuation.definition.string.end.nushell\\\"}},\\\"name\\\":\\\"string.quoted.single.nushell\\\"},\\\"table\\\":{\\\"begin\\\":\\\"\\\\\\\\[\\\",\\\"beginCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.square.begin.nushell\\\"}},\\\"end\\\":\\\"]\\\",\\\"endCaptures\\\":{\\\"0\\\":{\\\"name\\\":\\\"meta.brace.square.end.nushell\\\"}},\\\"name\\\":\\\"meta.table.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#spread\\\"},{\\\"include\\\":\\\"#value\\\"},{\\\"match\\\":\\\",\\\",\\\"name\\\":\\\"punctuation.separator.nushell\\\"}]},\\\"types\\\":{\\\"patterns\\\":[{\\\"begin\\\":\\\"\\\\\\\\b(list)\\\\\\\\s*<\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.type.nushell\\\"}},\\\"end\\\":\\\">\\\",\\\"name\\\":\\\"meta.list.nushell\\\",\\\"patterns\\\":[{\\\"include\\\":\\\"#types\\\"}]},{\\\"begin\\\":\\\"\\\\\\\\b(record)\\\\\\\\s*<\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.type.nushell\\\"}},\\\"end\\\":\\\">\\\",\\\"name\\\":\\\"meta.record.nushell\\\",\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"variable.parameter.nushell\\\"}},\\\"match\\\":\\\"([-\\\\\\\\w]+|\\\\\\\"[- \\\\\\\\w]+\\\\\\\"|'[^']+')\\\\\\\\s*:\\\\\\\\s*\\\"},{\\\"include\\\":\\\"#types\\\"}]},{\\\"match\\\":\\\"\\\\\\\\b(\\\\\\\\w+)\\\\\\\\b\\\",\\\"name\\\":\\\"entity.name.type.nushell\\\"}]},\\\"use-module\\\":{\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.import.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.namespace.nushell\\\"},\\\"3\\\":{\\\"name\\\":\\\"keyword.other.nushell\\\"}},\\\"match\\\":\\\"^\\\\\\\\s*((?:export )?use)\\\\\\\\s+([-\\\\\\\\w]+|\\\\\\\"[- \\\\\\\\w]+\\\\\\\"|'[- \\\\\\\\w]+')(?:\\\\\\\\s+([-\\\\\\\\w]+|\\\\\\\"[- \\\\\\\\w]+\\\\\\\"|'[- \\\\\\\\w]+'|\\\\\\\\*))?\\\\\\\\s*;?$\\\"},{\\\"begin\\\":\\\"^\\\\\\\\s*((?:export )?use)\\\\\\\\s+([-\\\\\\\\w]+|\\\\\\\"[- \\\\\\\\w]+\\\\\\\"|'[- \\\\\\\\w]+')\\\\\\\\s*\\\\\\\\[\\\",\\\"beginCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.control.import.nushell\\\"},\\\"2\\\":{\\\"name\\\":\\\"entity.name.namespace.nushell\\\"}},\\\"end\\\":\\\"(])\\\\\\\\s*;?\\\\\\\\s*$\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"meta.brace.square.end.nushell\\\"}},\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"keyword.other.nushell\\\"}},\\\"match\\\":\\\"([-\\\\\\\\w]+|\\\\\\\"[- \\\\\\\\w]+\\\\\\\"|'[- \\\\\\\\w]+'|\\\\\\\\*),?\\\"},{\\\"include\\\":\\\"#comment\\\"}]},{\\\"captures\\\":{\\\"2\\\":{\\\"name\\\":\\\"keyword.control.import.nushell\\\"},\\\"3\\\":{\\\"name\\\":\\\"string.bare.nushell\\\",\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.namespace.nushell\\\"}},\\\"match\\\":\\\"([- \\\\\\\\w]+)(?:\\\\\\\\.nu)?(?=$|[\\\\\\\"'])\\\"}]},\\\"4\\\":{\\\"name\\\":\\\"keyword.other.nushell\\\"}},\\\"match\\\":\\\"(?<path>(?:[/\\\\\\\\\\\\\\\\]|~[/\\\\\\\\\\\\\\\\]|\\\\\\\\.\\\\\\\\.?[/\\\\\\\\\\\\\\\\])?(?:[^/\\\\\\\\\\\\\\\\]+[/\\\\\\\\\\\\\\\\])*[- \\\\\\\\w]+(?:\\\\\\\\.nu)?){0}^\\\\\\\\s*((?:export )?use)\\\\\\\\s+(\\\\\\\"\\\\\\\\g<path>\\\\\\\"|'\\\\\\\\g<path>'|(?![\\\\\\\"'])\\\\\\\\g<path>)(?:\\\\\\\\s+([-\\\\\\\\w]+|\\\\\\\"[- \\\\\\\\w]+\\\\\\\"|'[^']+'|\\\\\\\\*))?\\\\\\\\s*;?$\\\"},{\\\"begin\\\":\\\"(?<path>(?:[/\\\\\\\\\\\\\\\\]|~[/\\\\\\\\\\\\\\\\]|\\\\\\\\.\\\\\\\\.?[/\\\\\\\\\\\\\\\\])?(?:[^/\\\\\\\\\\\\\\\\]+[/\\\\\\\\\\\\\\\\])*[- \\\\\\\\w]+(?:\\\\\\\\.nu)?){0}^\\\\\\\\s*((?:export )?use)\\\\\\\\s+(\\\\\\\"\\\\\\\\g<path>\\\\\\\"|'\\\\\\\\g<path>'|(?![\\\\\\\"'])\\\\\\\\g<path>)\\\\\\\\s+\\\\\\\\[\\\",\\\"beginCaptures\\\":{\\\"2\\\":{\\\"name\\\":\\\"keyword.control.import.nushell\\\"},\\\"3\\\":{\\\"name\\\":\\\"string.bare.nushell\\\",\\\"patterns\\\":[{\\\"captures\\\":{\\\"1\\\":{\\\"name\\\":\\\"entity.name.namespace.nushell\\\"}},\\\"match\\\":\\\"([- \\\\\\\\w]+)(?:\\\\\\\\.nu)?(?=$|[\\\\\\\"'])\\\"}]}},\\\"end\\\":\\\"(])\\\\\\\\s*;?\\\\\\\\s*$\\\",\\\"endCaptures\\\":{\\\"1\\\":{\\\"name\\\":\\\"meta.brace.square.end.nushell\\\"}},\\\"patterns\\\":[{\\\"captures\\\":{\\\"0\\\":{\\\"name\\\":\\\"keyword.other.nushell\\\"}},\\\"match\\\":\\\"([-\\\\\\\\w]+|\\\\\\\"[- \\\\\\\\w]+\\\\\\\"|'[- \\\\\\\\w]+'|\\\\\\\\*),?\\\"},{\\\"include\\\":\\\"#comment\\\"}]},{\\\"captures\\\":{\\\"0\\\":{\\\"name\\\":\\\"keyword.control.import.nushell\\\"}},\\\"match\\\":\\\"^\\\\\\\\s*(?:export )?use\\\\\\\\b\\\"}]},\\\"value\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#variables\\\"},{\\\"include\\\":\\\"#variable-fields\\\"},{\\\"include\\\":\\\"#control-keywords\\\"},{\\\"include\\\":\\\"#constant-value\\\"},{\\\"include\\\":\\\"#table\\\"},{\\\"include\\\":\\\"#operators\\\"},{\\\"include\\\":\\\"#paren-expression\\\"},{\\\"include\\\":\\\"#braced-expression\\\"},{\\\"include\\\":\\\"#string\\\"},{\\\"include\\\":\\\"#comment\\\"}]},\\\"variable-fields\\\":{\\\"match\\\":\\\"(?<=[])}])(?:\\\\\\\\.(?:[-\\\\\\\\w]+|\\\\\\\"[- \\\\\\\\w]+\\\\\\\"))+\\\",\\\"name\\\":\\\"variable.other.nushell\\\"},\\\"variables\\\":{\\\"captures\\\":{\\\"1\\\":{\\\"patterns\\\":[{\\\"include\\\":\\\"#internal-variables\\\"},{\\\"match\\\":\\\"\\\\\\\\$.+\\\",\\\"name\\\":\\\"variable.other.nushell\\\"}]},\\\"2\\\":{\\\"name\\\":\\\"variable.other.nushell\\\"}},\\\"match\\\":\\\"(\\\\\\\\$[0-9A-Z_a-z]+)((?:\\\\\\\\.(?:[-\\\\\\\\w]+|\\\\\\\"[- \\\\\\\\w]+\\\\\\\"))*)\\\"}},\\\"scopeName\\\":\\\"source.nushell\\\",\\\"aliases\\\":[\\\"nu\\\"]}\"))\n\nexport default [\nlang\n]\n"],"names":["lang","nushell"],"mappings":"AAAA,MAAMA,EAAO,OAAO,OAAO,KAAK,MAAM,43nBAA8urB,CAAC,EAErxrBC,EAAe,CACfD,CACA","x_google_ignoreList":[0]}
|