Skip to content

Instantly share code, notes, and snippets.

@mikeshot
Last active February 4, 2022 22:48
Show Gist options
  • Save mikeshot/d1957f30ba71788cb98c42c786624a49 to your computer and use it in GitHub Desktop.
Save mikeshot/d1957f30ba71788cb98c42c786624a49 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2022-02-04T22:48:22.572Z","extensionVersion":"v3.4.3"}
[
{
"metadata": {
"id": "2cbad5ee-b4ab-4de8-a1c7-77fede846155",
"publisherId": "patbenatar.advanced-new-file",
"publisherDisplayName": "patbenatar"
},
"name": "advanced-new-file",
"publisher": "patbenatar",
"version": "1.2.2"
},
{
"metadata": {
"id": "e337c67b-55c2-4fef-8949-eb260e7fb7fd",
"publisherId": "Shan.code-settings-sync",
"publisherDisplayName": "Shan"
},
"name": "code-settings-sync",
"publisher": "Shan",
"version": "3.4.3"
},
{
"metadata": {
"id": "298fa498-6c72-4871-95dd-2285f86b0f9a",
"publisherId": "oleg-shilo.favorites",
"publisherDisplayName": "oleg-shilo"
},
"name": "favorites",
"publisher": "oleg-shilo",
"version": "1.5.11"
},
{
"metadata": {
"id": "4de763bd-505d-4978-9575-2b7696ecf94e",
"publisherId": "eamodio.gitlens",
"publisherDisplayName": "eamodio"
},
"name": "gitlens",
"publisher": "eamodio",
"version": "11.7.0"
},
{
"metadata": {
"id": "7b71fc1b-190d-4f7d-95d1-93e422649b0a",
"publisherId": "Zignd.html-css-class-completion",
"publisherDisplayName": "Zignd"
},
"name": "html-css-class-completion",
"publisher": "Zignd",
"version": "1.20.0"
},
{
"metadata": {
"id": "26a529c9-2654-4b95-a63f-02f6a52429e6",
"publisherId": "zhuangtongfa.material-theme",
"publisherDisplayName": "zhuangtongfa"
},
"name": "material-theme",
"publisher": "zhuangtongfa",
"version": "3.13.17"
},
{
"metadata": {
"id": "dff6b801-247e-40e9-82e8-8c9b1d19d1b8",
"publisherId": "christian-kohler.npm-intellisense",
"publisherDisplayName": "christian-kohler"
},
"name": "npm-intellisense",
"publisher": "christian-kohler",
"version": "1.4.0"
},
{
"metadata": {
"id": "79afa437-682e-4fa2-a4fd-87844832a1dc",
"publisherId": "ryu1kn.partial-diff",
"publisherDisplayName": "ryu1kn"
},
"name": "partial-diff",
"publisher": "ryu1kn",
"version": "1.4.3"
},
{
"metadata": {
"id": "1b747f06-3789-4ebd-ac99-f1fe430c3347",
"publisherId": "alefragnani.project-manager",
"publisherDisplayName": "alefragnani"
},
"name": "project-manager",
"publisher": "alefragnani",
"version": "12.4.0"
},
{
"metadata": {
"id": "aae0701b-111f-49c1-9000-abd37a442f28",
"publisherId": "WallabyJs.quokka-vscode",
"publisherDisplayName": "WallabyJs"
},
"name": "quokka-vscode",
"publisher": "WallabyJs",
"version": "1.0.442"
},
{
"metadata": {
"id": "376bc29a-6eab-440e-a6c5-a6f4972e2ace",
"publisherId": "ThreadHeap.serverless-ide-vscode",
"publisherDisplayName": "ThreadHeap"
},
"name": "serverless-ide-vscode",
"publisher": "ThreadHeap",
"version": "0.5.33"
},
{
"metadata": {
"id": "cc37e2ec-fde2-4ec8-8a6b-2fe46215a968",
"publisherId": "devadvice.serverlessconsole",
"publisherDisplayName": "devadvice"
},
"name": "serverlessconsole",
"publisher": "devadvice",
"version": "0.7.6"
},
{
"metadata": {
"id": "d637104e-1fd7-4063-98fc-8afe46012c9b",
"publisherId": "sleistner.vscode-fileutils",
"publisherDisplayName": "sleistner"
},
"name": "vscode-fileutils",
"publisher": "sleistner",
"version": "3.5.0"
},
{
"metadata": {
"id": "90a37ca1-92a2-488a-b196-7a8c0b0127ea",
"publisherId": "ms-vscode.vscode-typescript-tslint-plugin",
"publisherDisplayName": "ms-vscode"
},
"name": "vscode-typescript-tslint-plugin",
"publisher": "ms-vscode",
"version": "1.3.3"
}
]
{"current":"Default.list.txt"}
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "JSON schema for NPM package.json files",
"definitions": {
"person": {
"description": "A person who has been involved in creating or maintaining this package.",
"type": [
"object",
"string"
],
"required": [
"name"
],
"properties": {
"name": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
},
"email": {
"type": "string",
"format": "email"
}
}
},
"dependency": {
"description": "Dependencies are specified with a simple hash of package name to version range. The version range is a string which has one or more space-separated descriptors. Dependencies can also be identified with a tarball or git URL.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"scriptsInstallAfter": {
"description": "Run AFTER the package is installed.",
"type": "string"
},
"scriptsPublishAfter": {
"description": "Run AFTER the package is published.",
"type": "string"
},
"scriptsRestart": {
"description": "Run by the 'npm restart' command. Note: 'npm restart' will run the stop and start scripts if no restart script is provided.",
"type": "string"
},
"scriptsStart": {
"description": "Run by the 'npm start' command.",
"type": "string"
},
"scriptsStop": {
"description": "Run by the 'npm stop' command.",
"type": "string"
},
"scriptsTest": {
"description": "Run by the 'npm test' command.",
"type": "string"
},
"scriptsUninstallBefore": {
"description": "Run BEFORE the package is uninstalled.",
"type": "string"
},
"scriptsVersionBefore": {
"description": "Run BEFORE bump the package version.",
"type": "string"
},
"packageExportsEntryPath": {
"type": [
"string",
"null"
],
"description": "The module path that is resolved when this specifier is imported. Set to `null` to disallow importing this module.",
"pattern": "^\\./"
},
"packageExportsEntryObject": {
"type": "object",
"description": "Used to specify conditional exports, note that Conditional exports are unsupported in older environments, so it's recommended to use the fallback array option if support for those environments is a concern.",
"properties": {
"require": {
"$ref": "#/definitions/packageExportsEntryOrFallback",
"description": "The module path that is resolved when this specifier is imported as a CommonJS module using the `require(...)` function."
},
"import": {
"$ref": "#/definitions/packageExportsEntryOrFallback",
"description": "The module path that is resolved when this specifier is imported as an ECMAScript module using an `import` declaration or the dynamic `import(...)` function."
},
"node": {
"$ref": "#/definitions/packageExportsEntryOrFallback",
"description": "The module path that is resolved when this environment is Node.js."
},
"default": {
"$ref": "#/definitions/packageExportsEntryOrFallback",
"description": "The module path that is resolved when no other export type matches."
}
},
"patternProperties": {
"^(?![\\.0-9]).": {
"$ref": "#/definitions/packageExportsEntryOrFallback",
"description": "The module path that is resolved when this environment matches the property name."
}
},
"additionalProperties": false
},
"packageExportsEntry": {
"oneOf": [
{
"$ref": "#/definitions/packageExportsEntryPath"
},
{
"$ref": "#/definitions/packageExportsEntryObject"
}
]
},
"packageExportsFallback": {
"type": "array",
"description": "Used to allow fallbacks in case this environment doesn't support the preceding entries.",
"items": {
"$ref": "#/definitions/packageExportsEntry"
}
},
"packageExportsEntryOrFallback": {
"oneOf": [
{
"$ref": "#/definitions/packageExportsEntry"
},
{
"$ref": "#/definitions/packageExportsFallback"
}
]
}
},
"type": "object",
"patternProperties": {
"^_": {
"description": "Any property starting with _ is valid.",
"tsType": "any"
}
},
"properties": {
"name": {
"description": "The name of the package.",
"type": "string",
"maxLength": 214,
"minLength": 1,
"pattern": "^(?:@[a-z0-9-*~][a-z0-9-*._~]*/)?[a-z0-9-~][a-z0-9-._~]*$"
},
"version": {
"description": "Version must be parseable by node-semver, which is bundled with npm as a dependency.",
"type": "string"
},
"description": {
"description": "This helps people discover your package, as it's listed in 'npm search'.",
"type": "string"
},
"keywords": {
"description": "This helps people discover your package as it's listed in 'npm search'.",
"type": "array",
"items": {
"type": "string"
}
},
"homepage": {
"description": "The url to the project homepage.",
"type": "string"
},
"bugs": {
"description": "The url to your project's issue tracker and / or the email address to which issues should be reported. These are helpful for people who encounter issues with your package.",
"type": [
"object",
"string"
],
"properties": {
"url": {
"type": "string",
"description": "The url to your project's issue tracker.",
"format": "uri"
},
"email": {
"type": "string",
"description": "The email address to which issues should be reported.",
"format": "email"
}
}
},
"license": {
"type": "string",
"description": "You should specify a license for your package so that people know how they are permitted to use it, and any restrictions you're placing on it."
},
"licenses": {
"description": "DEPRECATED: Instead, use SPDX expressions, like this: { \"license\": \"ISC\" } or { \"license\": \"(MIT OR Apache-2.0)\" } see: 'https://docs.npmjs.com/files/package.json#license'.",
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"url": {
"type": "string",
"format": "uri"
}
}
}
},
"author": {
"$ref": "#/definitions/person"
},
"contributors": {
"description": "A list of people who contributed to this package.",
"type": "array",
"items": {
"$ref": "#/definitions/person"
}
},
"maintainers": {
"description": "A list of people who maintains this package.",
"type": "array",
"items": {
"$ref": "#/definitions/person"
}
},
"files": {
"description": "The 'files' field is an array of files to include in your project. If you name a folder in the array, then it will also include the files inside that folder.",
"type": "array",
"items": {
"type": "string"
}
},
"main": {
"description": "The main field is a module ID that is the primary entry point to your program.",
"type": "string"
},
"exports": {
"description": "The \"exports\" field is used to restrict external access to non-exported module files, also enables a module to import itself using \"name\".",
"oneOf": [
{
"$ref": "#/definitions/packageExportsEntryPath",
"description": "The module path that is resolved when the module specifier matches \"name\", shadows the \"main\" field."
},
{
"type": "object",
"properties": {
".": {
"$ref": "#/definitions/packageExportsEntryOrFallback",
"description": "The module path that is resolved when the module specifier matches \"name\", shadows the \"main\" field."
}
},
"patternProperties": {
"^\\./.+": {
"$ref": "#/definitions/packageExportsEntryOrFallback",
"description": "The module path prefix that is resolved when the module specifier starts with \"name/\", set to \"./*\" to allow external modules to import any subpath."
}
},
"additionalProperties": false
},
{
"$ref": "#/definitions/packageExportsEntryObject",
"description": "The module path that is resolved when the module specifier matches \"name\", shadows the \"main\" field."
},
{
"$ref": "#/definitions/packageExportsFallback",
"description": "The module path that is resolved when the module specifier matches \"name\", shadows the \"main\" field."
}
]
},
"bin": {
"type": [
"string",
"object"
],
"additionalProperties": {
"type": "string"
}
},
"type": {
"description": "When set to \"module\", the type field allows a package to specify all .js files within are ES modules. If the \"type\" field is omitted or set to \"commonjs\", all .js files are treated as CommonJS.",
"type": "string",
"enum": [
"commonjs",
"module"
],
"default": "commonjs"
},
"types": {
"description": "Set the types property to point to your bundled declaration file.",
"type": "string"
},
"typings": {
"description": "Note that the \"typings\" field is synonymous with \"types\", and could be used as well.",
"type": "string"
},
"typesVersions": {
"description": "The \"typesVersions\" field is used since TypeScript 3.1 to support features that were only made available in newer TypeScript versions.",
"type": "object",
"additionalProperties": {
"description": "Contains overrides for the TypeScript version that matches the version range matching the property key.",
"type": "object",
"properties": {
"*": {
"description": "Maps all file paths to the file paths specified in the array.",
"type": "array",
"items": {
"type": "string",
"pattern": "^[^*]*(?:\\*[^*]*)?$"
}
}
},
"patternProperties": {
"^[^*]+$": {
"description": "Maps the file path matching the property key to the file paths specified in the array.",
"type": "array",
"items": {
"type": "string"
}
},
"^[^*]*\\*[^*]*$": {
"description": "Maps file paths matching the pattern specified in property key to file paths specified in the array.",
"type": "array",
"items": {
"type": "string",
"pattern": "^[^*]*(?:\\*[^*]*)?$"
}
}
},
"additionalProperties": false
}
},
"man": {
"type": [
"array",
"string"
],
"description": "Specify either a single file or an array of filenames to put in place for the man program to find.",
"items": {
"type": "string"
}
},
"directories": {
"type": "object",
"properties": {
"bin": {
"description": "If you specify a 'bin' directory, then all the files in that folder will be used as the 'bin' hash.",
"type": "string"
},
"doc": {
"description": "Put markdown files in here. Eventually, these will be displayed nicely, maybe, someday.",
"type": "string"
},
"example": {
"description": "Put example scripts in here. Someday, it might be exposed in some clever way.",
"type": "string"
},
"lib": {
"description": "Tell people where the bulk of your library is. Nothing special is done with the lib folder in any way, but it's useful meta info.",
"type": "string"
},
"man": {
"description": "A folder that is full of man pages. Sugar to generate a 'man' array by walking the folder.",
"type": "string"
},
"test": {
"type": "string"
}
}
},
"repository": {
"description": "Specify the place where your code lives. This is helpful for people who want to contribute.",
"type": [
"object",
"string"
],
"properties": {
"type": {
"type": "string"
},
"url": {
"type": "string"
},
"directory": {
"type": "string"
}
}
},
"scripts": {
"description": "The 'scripts' member is an object hash of script commands that are run at various times in the lifecycle of your package. The key is the lifecycle event, and the value is the command to run at that point.",
"type": "object",
"properties": {
"lint": {
"type": "string",
"description": "Run code quality tools, e.g. ESLint, TSLint, etc."
},
"prepublish": {
"type": "string",
"description": "Run BEFORE the package is published (Also run on local npm install without any arguments)."
},
"prepare": {
"type": "string",
"description": "Run both BEFORE the package is packed and published, and on local npm install without any arguments. This is run AFTER prepublish, but BEFORE prepublishOnly."
},
"prepublishOnly": {
"type": "string",
"description": "Run BEFORE the package is prepared and packed, ONLY on npm publish."
},
"prepack": {
"type": "string",
"description": "run BEFORE a tarball is packed (on npm pack, npm publish, and when installing git dependencies)."
},
"postpack": {
"type": "string",
"description": "Run AFTER the tarball has been generated and moved to its final destination."
},
"publish": {
"type": "string",
"description": "Publishes a package to the registry so that it can be installed by name. See https://docs.npmjs.com/cli/v8/commands/npm-publish"
},
"postpublish": {
"$ref": "#/definitions/scriptsPublishAfter"
},
"preinstall": {
"type": "string",
"description": "Run BEFORE the package is installed."
},
"install": {
"$ref": "#/definitions/scriptsInstallAfter"
},
"postinstall": {
"$ref": "#/definitions/scriptsInstallAfter"
},
"preuninstall": {
"$ref": "#/definitions/scriptsUninstallBefore"
},
"uninstall": {
"$ref": "#/definitions/scriptsUninstallBefore"
},
"postuninstall": {
"type": "string",
"description": "Run AFTER the package is uninstalled."
},
"preversion": {
"$ref": "#/definitions/scriptsVersionBefore"
},
"version": {
"$ref": "#/definitions/scriptsVersionBefore"
},
"postversion": {
"type": "string",
"description": "Run AFTER bump the package version."
},
"pretest": {
"$ref": "#/definitions/scriptsTest"
},
"test": {
"$ref": "#/definitions/scriptsTest"
},
"posttest": {
"$ref": "#/definitions/scriptsTest"
},
"prestop": {
"$ref": "#/definitions/scriptsStop"
},
"stop": {
"$ref": "#/definitions/scriptsStop"
},
"poststop": {
"$ref": "#/definitions/scriptsStop"
},
"prestart": {
"$ref": "#/definitions/scriptsStart"
},
"start": {
"$ref": "#/definitions/scriptsStart"
},
"poststart": {
"$ref": "#/definitions/scriptsStart"
},
"prerestart": {
"$ref": "#/definitions/scriptsRestart"
},
"restart": {
"$ref": "#/definitions/scriptsRestart"
},
"postrestart": {
"$ref": "#/definitions/scriptsRestart"
},
"serve": {
"type": "string",
"description": "Start dev server to serve application files"
}
},
"additionalProperties": {
"type": "string",
"tsType": "string | undefined"
}
},
"config": {
"description": "A 'config' hash can be used to set configuration parameters used in package scripts that persist across upgrades.",
"type": "object",
"additionalProperties": true
},
"dependencies": {
"$ref": "#/definitions/dependency"
},
"devDependencies": {
"$ref": "#/definitions/dependency"
},
"optionalDependencies": {
"$ref": "#/definitions/dependency"
},
"peerDependencies": {
"$ref": "#/definitions/dependency"
},
"peerDependenciesMeta": {
"description": "When a user installs your package, warnings are emitted if packages specified in \"peerDependencies\" are not already installed. The \"peerDependenciesMeta\" field serves to provide more information on how your peer dependencies are utilized. Most commonly, it allows peer dependencies to be marked as optional. Metadata for this field is specified with a simple hash of the package name to a metadata object.",
"type": "object",
"additionalProperties": {
"type": "object",
"additionalProperties": true,
"properties": {
"optional": {
"description": "Specifies that this peer dependency is optional and should not be installed automatically.",
"type": "boolean"
}
}
}
},
"bundledDependencies": {
"description": "Array of package names that will be bundled when publishing the package.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "boolean"
}
]
},
"bundleDependencies": {
"description": "DEPRECATED: This field is honored, but \"bundledDependencies\" is the correct field name.",
"oneOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "boolean"
}
]
},
"resolutions": {
"description": "Resolutions is used to support selective version resolutions, which lets you define custom package versions or ranges inside your dependencies. See: https://classic.yarnpkg.com/en/docs/selective-version-resolutions",
"type": "object"
},
"packageManager": {
"description": "Defines which package manager is expected to be used when working on the current project. This field is currently experimental and needs to be opted-in; see https://nodejs.org/api/corepack.html",
"type": "string",
"pattern": "(npm|pnpm|yarn)@\\d+\\.\\d+\\.\\d+(-.+)?"
},
"engines": {
"type": "object",
"properties": {
"node": {
"type": "string"
}
},
"additionalProperties": {
"type": "string"
}
},
"engineStrict": {
"type": "boolean"
},
"os": {
"description": "Specify which operating systems your module will run on.",
"type": "array",
"items": {
"type": "string"
}
},
"cpu": {
"description": "Specify that your code only runs on certain cpu architectures.",
"type": "array",
"items": {
"type": "string"
}
},
"preferGlobal": {
"type": "boolean",
"description": "DEPRECATED: This option used to trigger an npm warning, but it will no longer warn. It is purely there for informational purposes. It is now recommended that you install any binaries as local devDependencies wherever possible."
},
"private": {
"description": "If set to true, then npm will refuse to publish it.",
"oneOf": [
{
"type": "boolean"
},
{
"enum": [
"false",
"true"
]
}
]
},
"publishConfig": {
"type": "object",
"properties": {
"access": {
"type": "string",
"enum": [
"public",
"restricted"
]
},
"tag": {
"type": "string"
},
"registry": {
"type": "string",
"format": "uri"
}
},
"additionalProperties": true
},
"dist": {
"type": "object",
"properties": {
"shasum": {
"type": "string"
},
"tarball": {
"type": "string"
}
}
},
"readme": {
"type": "string"
},
"module": {
"description": "An ECMAScript module ID that is the primary entry point to your program.",
"type": "string"
},
"esnext": {
"description": "A module ID with untranspiled code that is the primary entry point to your program.",
"type": [
"string",
"object"
],
"properties": {
"main": {
"type": "string"
},
"browser": {
"type": "string"
}
},
"additionalProperties": {
"type": "string"
}
},
"workspaces": {
"description": "Allows packages within a directory to depend on one another using direct linking of local files. Additionally, dependencies within a workspace are hoisted to the workspace root when possible to reduce duplication. Note: It's also a good idea to set \"private\" to true when using this feature.",
"anyOf": [
{
"type": "array",
"description": "Workspace package paths. Glob patterns are supported.",
"items": {
"type": "string"
}
},
{
"type": "object",
"properties": {
"packages": {
"type": "array",
"description": "Workspace package paths. Glob patterns are supported.",
"items": {
"type": "string"
}
},
"nohoist": {
"type": "array",
"description": "Packages to block from hoisting to the workspace root. Currently only supported in Yarn only.",
"items": {
"type": "string"
}
}
}
}
]
},
"jspm": {
"$ref": "#"
}
},
"anyOf": [
{
"type": "object",
"not": {
"required": [
"bundledDependencies",
"bundleDependencies"
]
}
},
{
"type": "object",
"not": {
"required": [
"bundleDependencies"
]
},
"required": [
"bundledDependencies"
]
},
{
"type": "object",
"not": {
"required": [
"bundledDependencies"
]
},
"required": [
"bundleDependencies"
]
}
]
}
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "cmd+b",
"command": "editor.action.goToDeclaration",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"key": "ctrl+right",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+left",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+alt+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+7",
"command": "editor.action.blockComment",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+cmd+l",
"command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "cmd+r",
"command": "workbench.action.showAllSymbols"
},
{
"key": "shift+cmd+r",
"command": "workbench.action.gotoSymbol"
},
{
"key": "cmd+9",
"command": "workbench.view.debug"
},
{
"key": "cmd+8",
"command": "workbench.view.extensions"
},
{
"key": "cmd+5",
"command": "workbench.view.scm"
},
{
"key": "cmd+3",
"command": "workbench.action.toggleStatusbarVisibility"
},
{
"key": "cmd+4",
"command": "workbench.action.toggleActivityBarVisibility"
},
{
"key": "alt+cmd+left",
"command": "workbench.action.navigateBack"
},
{
"key": "alt+cmd+right",
"command": "workbench.action.navigateForward"
},
{
"key": "cmd+t",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "cmd+o",
"command": "workbench.action.files.openFileFolder"
},
{
"key": "cmd+e",
"command": "workbench.action.openRecent"
},
{
"key": "alt+cmd+w",
"command": "workbench.action.closeWindow"
},
{
"key": "cmd+w",
"command": "workbench.action.closeActiveEditor"
},
{
"key": "cmd+1",
"command": "workbench.view.explorer"
},
{
"key": "shift+cmd+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "cmd+0",
"command": "editor.action.fontZoomReset"
},
{
"key": "ctrl+shift+right",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+shift+t",
"command": "workbench.action.terminal.new"
},
{
"key": "ctrl+shift+w",
"command": "workbench.action.terminal.kill"
},
{
"key": "shift+cmd+b",
"command": "editor.action.referenceSearch.trigger",
"when": "editorHasReferenceProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor"
},
{
"key": "ctrl+-",
"command": "editor.fold",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+-",
"command": "editor.foldRecursively",
"when": "editorTextFocus"
},
{
"key": "shift+f6",
"command": "editor.action.rename",
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
},
{
"key": "shift+cmd+9",
"command": "workbench.action.debug.start",
"when": "!inDebugMode"
},
{
"key": "f8",
"command": "workbench.action.debug.stepOver",
"when": "inDebugMode"
},
{
"key": "f7",
"command": "workbench.action.debug.stepInto",
"when": "inDebugMode"
},
{
"key": "shift+f8",
"command": "workbench.action.debug.stepOut",
"when": "inDebugMode"
},
{
"key": "ctrl+[BracketRight]",
"command": "editor.unfold",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+[BracketRight]",
"command": "editor.unfoldRecursively",
"when": "editorTextFocus"
},
{
"key": "f9",
"command": "workbench.action.debug.continue",
"when": "inDebugMode"
},
{
"key": "cmd+[BracketRight]",
"command": "editor.action.fontZoomIn"
},
{
"key": "cmd+-",
"command": "editor.action.fontZoomOut"
},
{
"key": "cmd+2",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+cmd+n",
"command": "workbench.action.newWindow"
},
{
"key": "shift+cmd+n",
"command": "extension.advancedNewFile"
},
{
"key": "ctrl+shift+n",
"command": "fileutils.newFolderAtRoot"
},
{
"key": "cmd+g",
"command": "workbench.action.gotoLine"
},
{
"key": "ctrl+cmd+1",
"command": "workbench.action.editorLayoutSingle"
},
{
"key": "ctrl+cmd+2",
"command": "workbench.action.editorLayoutTwoColumns"
},
{
"key": "shift+cmd+o",
"command": "projectManager.listProjects"
},
{
"key": "alt+enter",
"command": "editor.action.showContextMenu",
"when": "textInputFocus"
},
{
"key": "ctrl+g",
"command": "editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+shift+g",
"command": "editor.action.selectHighlights",
"when": "editorFocus"
},
{
"key": "alt+cmd+[BracketRight]",
"command": "workbench.action.quickSwitchWindow"
}
]
{
"window.zoomLevel": 1,
"editor.minimap.enabled": false,
"workbench.colorTheme": "One Dark Pro",
"workbench.statusBar.visible": false,
"editor.fontSize": 16,
"editor.fontFamily": "Menlo",
"editor.wordWrap": "on",
"php.executablePath": "/usr/bin/php",
"files.exclude": {
"**/.cache": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.idea": true,
"**/.svn": true,
"**/.vscode": true,
"**/CVS": true,
"**/node_modules": true,
"**/.dynamodb": true,
"**/.nyc_output": true,
"**/.serverless": true,
"**/.webpack": true
},
"search.exclude": {
"**/.cache": true,
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.idea": true,
"**/.svn": true,
"**/.vscode": true,
"**/node_modules": true,
"**/.dynamodb": true,
"**/.nyc_output": true,
"**/.serverless": true,
"**/.webpack": true,
"**/dist": true,
"**/coverage": true,
},
"workbench.activityBar.visible": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.sideBar.location": "left",
"workbench.editor.enablePreview": false,
"tslint.rulesDirectory": "./node_modules/codelyzer",
"typescript.tsdk": "node_modules/typescript/lib",
"sync.gist": "d1957f30ba71788cb98c42c786624a49",
"sync.autoUpload": true,
"sync.quietSync": true,
"explorer.openEditors.visible": 0,
"explorer.confirmDelete": true,
"diffEditor.renderSideBySide": true,
"gitlens.codeLens.recentChange.enabled": false,
"gitlens.codeLens.authors.enabled": false,
"gitlens.codeLens.enabled": true,
"gitlens.currentLine.enabled": false,
"gitlens.hovers.currentLine.over": "line",
"gitlens.hovers.enabled": false,
"gitlens.mode.statusBar.enabled": false,
"gitlens.statusBar.enabled": false,
"debug.node.autoAttach": "on",
"breadcrumbs.enabled": false,
"gitlens.views.compare.files.layout": "list",
"bracketPairColorizer.showHorizontalScopeLine": false,
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.renameOnType": true,
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"editor.renderWhitespace": "none",
"workbench.editor.showTabs": true
}
{
// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"Log text to console" : {
"prefix": "cont",
"body": [
"console.warn('${1:text}');"
],
"description": "Log text to console"
},
"Log value to console" : {
"prefix": "conv",
"body": [
"console.warn('${1:value}', ${1:value});"
],
"description": "Log value to console"
}
}
{
// Place your snippets for typescript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
"Log text to console" : {
"prefix": "cont",
"body": [
"console.warn('${1:text}');"
],
"description": "Log text to console"
},
"Log value to console" : {
"prefix": "conv",
"body": [
"console.warn('${1:value}', ${1:value});"
],
"description": "Log value to console"
}
}
{"ref":"45f8ed45-3f54-4988-b4de-ba8cca953c98","content":"{\"version\":5,\"machineId\":\"35991204-fb47-40bb-b2f5-0069afac8723\",\"content\":\"[{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.bat\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.clojure\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.coffeescript\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.configuration-editing\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.cpp\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.csharp\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.css\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.css-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.dart\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.debug-auto-launch\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.debug-server-ready\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.diff\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.docker\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.emmet\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.extension-editing\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.fsharp\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.git\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.git-base\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.github\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.github-authentication\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.0.2\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.go\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.groovy\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.grunt\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.gulp\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.handlebars\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.hlsl\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.html\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.html-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.image-preview\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ini\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ipynb\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.jake\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.java\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.javascript\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.json\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.json-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.julia\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.less\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.log\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.lua\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.make\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown-math\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.merge-conflict\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.microsoft-authentication\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.js-debug\\\",\\\"uuid\\\":\\\"25629058-ddac-4e17-abba-74678e126c5d\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.62.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.js-debug-companion\\\",\\\"uuid\\\":\\\"99cb0b7f-7354-4278-b8da-6cc79972169d\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.15\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.references-view\\\",\\\"uuid\\\":\\\"dc489f46-520d-4556-ae85-1f9eab3c412d\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.0.81\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.vscode-js-profile-table\\\",\\\"uuid\\\":\\\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.0.18\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.npm\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.objective-c\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.perl\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.php\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.php-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.powershell\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.pug\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.python\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.r\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.razor\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ruby\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.rust\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.scss\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.search-result\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.shaderlab\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.shellscript\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.simple-browser\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.sql\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.swift\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-abyss\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-defaults\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-kimbie-dark\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-monokai\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-monokai-dimmed\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-quietlight\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-red\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.vscode-theme-seti\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-solarized-dark\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-solarized-light\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-tomorrow-night-blue\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.typescript\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.typescript-language-features\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.vb\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.xml\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.yaml\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.latex\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"shan.code-settings-sync\\\",\\\"uuid\\\":\\\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"3.4.3\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"patbenatar.advanced-new-file\\\",\\\"uuid\\\":\\\"2cbad5ee-b4ab-4de8-a1c7-77fede846155\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.2.2\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"oleg-shilo.favorites\\\",\\\"uuid\\\":\\\"298fa498-6c72-4871-95dd-2285f86b0f9a\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.5.11\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"eamodio.gitlens\\\",\\\"uuid\\\":\\\"4de763bd-505d-4978-9575-2b7696ecf94e\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"11.7.0\\\",\\\"installed\\\":true,\\\"state\\\":{\\\"gitlens:views:welcome:visible\\\":true,\\\"gitlens:synced:version\\\":\\\"11.7.0\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"zignd.html-css-class-completion\\\",\\\"uuid\\\":\\\"7b71fc1b-190d-4f7d-95d1-93e422649b0a\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.20.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"zhuangtongfa.material-theme\\\",\\\"uuid\\\":\\\"26a529c9-2654-4b95-a63f-02f6a52429e6\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"3.13.17\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"christian-kohler.npm-intellisense\\\",\\\"uuid\\\":\\\"dff6b801-247e-40e9-82e8-8c9b1d19d1b8\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.4.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ryu1kn.partial-diff\\\",\\\"uuid\\\":\\\"79afa437-682e-4fa2-a4fd-87844832a1dc\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.4.3\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"alefragnani.project-manager\\\",\\\"uuid\\\":\\\"1b747f06-3789-4ebd-ac99-f1fe430c3347\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"12.4.0\\\",\\\"installed\\\":true,\\\"state\\\":{\\\"project-manager.version\\\":\\\"12.4.0\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"wallabyjs.quokka-vscode\\\",\\\"uuid\\\":\\\"aae0701b-111f-49c1-9000-abd37a442f28\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.0.442\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"threadheap.serverless-ide-vscode\\\",\\\"uuid\\\":\\\"376bc29a-6eab-440e-a6c5-a6f4972e2ace\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.5.33\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"devadvice.serverlessconsole\\\",\\\"uuid\\\":\\\"cc37e2ec-fde2-4ec8-8a6b-2fe46215a968\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"0.7.6\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"sleistner.vscode-fileutils\\\",\\\"uuid\\\":\\\"d637104e-1fd7-4063-98fc-8afe46012c9b\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"3.5.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.vscode-typescript-tslint-plugin\\\",\\\"uuid\\\":\\\"90a37ca1-92a2-488a-b196-7a8c0b0127ea\\\"},\\\"preRelease\\\":false,\\\"version\\\":\\\"1.3.3\\\",\\\"installed\\\":true}]\"}","skippedExtensions":[]}
{"ref":"f7f289fc-2fc2-4124-9ff5-bb5feb8268b0","content":"{\"version\":1,\"machineId\":\"35991204-fb47-40bb-b2f5-0069afac8723\",\"content\":\"{\\\"storage\\\":{\\\"workbench.panel.markers.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.markers.view\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.panel.output.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.output\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"terminal.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"terminal\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.explorer.views.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"outline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"timeline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.openEditorsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.emptyView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.fileView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"npm\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"favorites-explorer-view\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.scm.views.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.scm.repositories\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.commits\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.repositories\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.fileHistory\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.lineHistory\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.branches\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.remotes\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.stashes\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.tags\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.contributors\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.searchAndCompare\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.search.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.search\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.activity.pinnedViewlets2\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.explorer\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":0},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.search\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":1},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.scm\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":2},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.debug\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":3},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extensions\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":4},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.remote\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":4},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.test\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":6},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.references-view\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":7},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.angular\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":8},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.favorites-explorer\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":11},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.gitlens\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":10},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.project-manager\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":8},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.wallaby\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":12},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.serverlessConsole\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":9},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.sync\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false}]\\\"},\\\"nps/lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Fri Feb 04 2022\\\"},\\\"nps/sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"3\\\"},\\\"workbench.view.debug.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.welcome\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.variablesView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.watchExpressionsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.callStackView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.loadedScriptsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.breakPointsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"jsBrowserBreakpoints\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"jsExcludedCallers\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.telemetryOptOutShown\\\":{\\\"version\\\":1,\\\"value\\\":\\\"true\\\"},\\\"workbench.statusbar.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"status.workspaceTrust.1643741023188\\\\\\\",\\\\\\\"status.workspaceTrust.b2e09197554305e72f27908e44b6b3c8\\\\\\\",\\\\\\\"status.workspaceTrust.1643911561647\\\\\\\",\\\\\\\"status.workspaceTrust.6147ac529d04e6f03d2e2ec993fdddb7\\\\\\\"]\\\"},\\\"workbench.panel.pinnedPanels\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.markers\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Problems\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":0,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.output\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Output\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":1,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.repl\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Debug Console\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":2,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"terminal\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Terminal\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":3,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"refactorPreview\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Refactor Preview\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false}]\\\"},\\\"cpp.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Fri Feb 04 2022\\\"},\\\"cpp.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"3\\\"},\\\"java.2.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Fri Feb 04 2022\\\"},\\\"java.2.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"3\\\"},\\\"javascript.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Fri Feb 04 2022\\\"},\\\"javascript.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"3\\\"},\\\"typescript.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Fri Feb 04 2022\\\"},\\\"typescript.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"3\\\"},\\\"ces/skipSurvey\\\":{\\\"version\\\":1,\\\"value\\\":\\\"1.63.2\\\"},\\\"memento/gettingStartedService\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"installGit\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"pickColorTheme\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"pickColorThemeWeb\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"settingsSync\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"settingsSyncWeb\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"quickOpen\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"quickOpenWeb\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"commandPaletteTask\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"commandPaletteTaskWeb\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"findLanguageExtensions\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"findLanguageExtensionsWeb\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"pickAFolderTask-Mac\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"settings\\\\\\\":{\\\\\\\"done\\\\\\\":true},\\\\\\\"cyrilletuzi.angular-schematics#angularschematics#documentation\\\\\\\":{\\\\\\\"done\\\\\\\":true}}\\\"},\\\"workbench.view.extensions.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.installed.empty\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.workspaceRecommendations\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.popular\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.otherRecommendations\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.recommendedList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.enabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.disabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.marketplace\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchInstalled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchEnabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchDisabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchOutdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchBuiltin\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchWorkspaceUnsupported\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinFeatureExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinThemeExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.untrustedUnsupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.untrustedPartiallySupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.virtualUnsupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.virtualPartiallySupportedExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.welcomePage.hiddenCategories\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"Setup\\\\\\\"]\\\"},\\\"colorThemeData\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"id\\\\\\\":\\\\\\\"vs-dark zhuangtongfa-material-theme-themes-OneDark-Pro-json\\\\\\\",\\\\\\\"label\\\\\\\":\\\\\\\"One Dark Pro\\\\\\\",\\\\\\\"settingsId\\\\\\\":\\\\\\\"One Dark Pro\\\\\\\",\\\\\\\"themeTokenColors\\\\\\\":[{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.delayed.unison,punctuation.definition.list.begin.unison,punctuation.definition.list.end.unison,punctuation.definition.ability.begin.unison,punctuation.definition.ability.end.unison,punctuation.operator.assignment.as.unison,punctuation.separator.pipe.unison,punctuation.separator.delimiter.unison,punctuation.definition.hash.unison\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.other.generic-type.haskell\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage.type.haskell\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.variable.magic.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.separator.period.python,punctuation.separator.element.python,punctuation.parenthesis.begin.python,punctuation.parenthesis.end.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.parameter.function.language.special.self.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.parameter.function.language.special.cls.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage.modifier.lifetime.rust\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.function.std.rust\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.lifetime.rust\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.language.rust\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.edge\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.other.character-class.regexp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.operator.word\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.quantifier.regexp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.parameter.function\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#5c6370\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"comment markup.link\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.changed.diff\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.diff.header.from-file,meta.diff.header.to-file,punctuation.definition.from-file.diff,punctuation.definition.to-file.diff\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.inserted.diff\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.deleted.diff\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.function.c,meta.function.cpp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.section.block.begin.bracket.curly.cpp,punctuation.section.block.end.bracket.curly.cpp,punctuation.terminator.statement.c,punctuation.section.block.begin.bracket.curly.c,punctuation.section.block.end.bracket.curly.c,punctuation.section.parens.begin.bracket.round.c,punctuation.section.parens.end.bracket.round.c,punctuation.section.parameters.begin.bracket.round.c,punctuation.section.parameters.end.bracket.round.c\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.separator.key-value\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.expression.import\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.math\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.property.math\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.other.constant\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"storage.type.annotation.java\\\\\\\",\\\\\\\"storage.type.object.array.java\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"source.java\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.section.block.begin.java,punctuation.section.block.end.java,punctuation.definition.method-parameters.begin.java,punctuation.definition.method-parameters.end.java,meta.method.identifier.java,punctuation.section.method.begin.java,punctuation.section.method.end.java,punctuation.terminator.java,punctuation.section.class.begin.java,punctuation.section.class.end.java,punctuation.section.inner-class.begin.java,punctuation.section.inner-class.end.java,meta.method-call.java,punctuation.section.class.begin.bracket.curly.java,punctuation.section.class.end.bracket.curly.java,punctuation.section.method.begin.bracket.curly.java,punctuation.section.method.end.bracket.curly.java,punctuation.separator.period.java,punctuation.bracket.angle.java,punctuation.definition.annotation.java,meta.method.body.java\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.method.java\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage.modifier.import.java,storage.type.java,storage.type.generic.java\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.instanceof.java\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.definition.variable.name.java\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.logical\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.bitwise\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.channel\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.property-value.scss,support.constant.property-value.css\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.css,keyword.operator.scss,keyword.operator.less\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.color.w3c-standard-color-name.css,support.constant.color.w3c-standard-color-name.scss\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.separator.list.comma.css\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.color.w3c-standard-color-name.css\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.type.vendored.property-name.css\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.module.node,support.type.object.module,support.module.node\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.type.module\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.other.readwrite,meta.object-literal.key,support.variable.property,support.variable.object.process,support.variable.object.node\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.json\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.operator.expression.instanceof\\\\\\\",\\\\\\\"keyword.operator.new\\\\\\\",\\\\\\\"keyword.operator.ternary\\\\\\\",\\\\\\\"keyword.operator.optional\\\\\\\",\\\\\\\"keyword.operator.expression.keyof\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.type.object.console\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.variable.property.process\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.function,support.function.console\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.misc.rust\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.sigil.rust\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.delete\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.type.object.dom\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.variable.dom,support.variable.property.dom\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.arithmetic,keyword.operator.comparison,keyword.operator.decrement,keyword.operator.increment,keyword.operator.relational\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.assignment.c,keyword.operator.comparison.c,keyword.operator.c,keyword.operator.increment.c,keyword.operator.decrement.c,keyword.operator.bitwise.shift.c,keyword.operator.assignment.cpp,keyword.operator.comparison.cpp,keyword.operator.cpp,keyword.operator.increment.cpp,keyword.operator.decrement.cpp,keyword.operator.bitwise.shift.cpp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.separator.delimiter\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.separator.c,punctuation.separator.cpp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.type.posix-reserved.c,support.type.posix-reserved.cpp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.sizeof.c,keyword.operator.sizeof.cpp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.parameter.function.language.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.type.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.logical.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.parameter.function.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.arguments.begin.python,punctuation.definition.arguments.end.python,punctuation.separator.arguments.python,punctuation.definition.list.begin.python,punctuation.definition.list.end.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.function-call.generic.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.character.format.placeholder.other.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.assignment.compound\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.assignment.compound.js,keyword.operator.assignment.compound.ts\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.namespace\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.c\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.language\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.variable.parameter.java\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"import.storage.java\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.package.keyword\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.package\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.name.function\\\\\\\",\\\\\\\"meta.require\\\\\\\",\\\\\\\"support.function.any-method\\\\\\\",\\\\\\\"variable.function\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.type.namespace\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.class, entity.name.type.class\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.class.identifier.namespace.type\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.name.class\\\\\\\",\\\\\\\"variable.other.class.js\\\\\\\",\\\\\\\"variable.other.class.ts\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.other.class.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.type\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.control\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"control.elements, keyword.operator.less\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.other.special-method\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.storage\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.expression.delete,keyword.operator.expression.in,keyword.operator.expression.of,keyword.operator.expression.instanceof,keyword.operator.new,keyword.operator.expression.typeof,keyword.operator.expression.void\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.storage.type.java\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.function\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.type.property-name\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.property-value\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.font-name\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.other.symbol\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.numeric\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.constant\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.other.attribute-name\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"normal\\\\\\\",\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.other.attribute-name.id\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"normal\\\\\\\",\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.other.attribute-name.class.css\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.selector\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.heading\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.heading punctuation.definition.heading, entity.name.section\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.other.unit\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.bold,todo.bold\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.bold\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.italic, punctuation.definition.italic,todo.emphasis\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"emphasis md\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.section.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.heading.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.list.begin.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.heading.setext\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.bold.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.inline.raw.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.inline.raw.string.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.raw.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.list.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"punctuation.definition.string.begin.markdown\\\\\\\",\\\\\\\"punctuation.definition.string.end.markdown\\\\\\\",\\\\\\\"punctuation.definition.metadata.markdown\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"beginning.punctuation.definition.list.markdown\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.metadata.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.underline.link.markdown,markup.underline.link.image.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string.other.link.title.markdown,string.other.link.description.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.raw.monospace.asciidoc\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.asciidoc\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.list.asciidoc\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.link.asciidoc,markup.other.url.asciidoc\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string.unquoted.asciidoc,markup.other.url.asciidoc\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string.regexp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.character.escape\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.section.embedded, variable.interpolation\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.section.embedded.begin,punctuation.section.embedded.end\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ffffff\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"invalid.illegal\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"invalid.illegal.bad-ampersand.html\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ffffff\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"invalid.broken\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ffffff\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"invalid.deprecated\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ffffff\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"invalid.unimplemented\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"source.json meta.structure.dictionary.json > string.quoted.json\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"source.json meta.structure.dictionary.json > string.quoted.json > punctuation.string\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"source.json meta.structure.dictionary.json > value.json > string.quoted.json,source.json meta.structure.array.json > value.json > string.quoted.json,source.json meta.structure.dictionary.json > value.json > string.quoted.json > punctuation,source.json meta.structure.array.json > value.json > string.quoted.json > punctuation\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"source.json meta.structure.dictionary.json > constant.language.json,source.json meta.structure.array.json > constant.language.json\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.type.property-name.json\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.type.property-name.json punctuation\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"text.html.laravel-blade source.php.embedded.line.html entity.name.tag.laravel-blade\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"text.html.laravel-blade source.php.embedded.line.html support.constant.laravel-blade\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.other.namespace.use.php,support.other.namespace.use-as.php,entity.other.alias.php,meta.interface.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.error-control.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.type.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.section.array.begin.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.section.array.end.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#f44747\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"invalid.illegal.non-null-typehinted.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage.type.php,meta.other.type.phpdoc.php,keyword.other.type.php,keyword.other.array.phpdoc.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.function-call.php,meta.function-call.object.php,meta.function-call.static.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.parameters.begin.bracket.round.php,punctuation.definition.parameters.end.bracket.round.php,punctuation.separator.delimiter.php,punctuation.section.scope.begin.php,punctuation.section.scope.end.php,punctuation.terminator.expression.php,punctuation.definition.arguments.begin.bracket.round.php,punctuation.definition.arguments.end.bracket.round.php,punctuation.definition.storage-type.begin.bracket.round.php,punctuation.definition.storage-type.end.bracket.round.php,punctuation.definition.array.begin.bracket.round.php,punctuation.definition.array.end.bracket.round.php,punctuation.definition.begin.bracket.round.php,punctuation.definition.end.bracket.round.php,punctuation.definition.begin.bracket.curly.php,punctuation.definition.end.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php,punctuation.definition.section.switch-block.start.bracket.curly.php,punctuation.definition.section.switch-block.begin.bracket.curly.php,punctuation.definition.section.switch-block.end.bracket.curly.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.core.rust\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.ext.php,support.constant.std.php,support.constant.core.php,support.constant.parser-token.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.goto-label.php,support.other.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.logical.php,keyword.operator.bitwise.php,keyword.operator.arithmetic.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.regexp.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.comparison.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.heredoc.php,keyword.operator.nowdoc.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.function.decorator.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.token.decorator.python,meta.function.decorator.identifier.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"function.parameter\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"function.brace\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"function.parameter.ruby, function.parameter.cs\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.language.symbol.ruby\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"rgb-value\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"inline-color-decoration rgb-value\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"less rgb-value\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"selector.sass\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.type.primitive.ts,support.type.builtin.ts,support.type.primitive.tsx,support.type.builtin.tsx\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"block.scope.end,block.scope.begin\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage.type.cs\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.variable.local.cs\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.info-token\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.warn-token\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#f44747\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.error-token\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.debug-token\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"punctuation.definition.template-expression.begin\\\\\\\",\\\\\\\"punctuation.definition.template-expression.end\\\\\\\",\\\\\\\"punctuation.section.embedded\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.template.expression\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.operator.module\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.type.type.flowtype\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.type.primitive\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.property.object\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"variable.parameter.function.js\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.other.template.begin\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.other.template.end\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.other.substitution.begin\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.other.substitution.end\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.operator.assignment\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.operator.assignment.go\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.operator.arithmetic.go\\\\\\\",\\\\\\\"keyword.operator.address.go\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.name.package.go\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.type.prelude.elm\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.constant.elm\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"punctuation.quasi.element\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.character.entity\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.other.attribute-name.pseudo-element\\\\\\\",\\\\\\\"entity.other.attribute-name.pseudo-class\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.global.clojure\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.symbol.clojure\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.keyword.clojure\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.arguments.coffee\\\\\\\",\\\\\\\"variable.parameter.function.coffee\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"source.ini\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.scope.prerequisites.makefile\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"source.makefile\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"storage.modifier.import.groovy\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.method.groovy\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.definition.variable.name.groovy\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"meta.definition.class.inherited.classes.groovy\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.variable.semantic.hlsl\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.type.texture.hlsl\\\\\\\",\\\\\\\"support.type.sampler.hlsl\\\\\\\",\\\\\\\"support.type.object.hlsl\\\\\\\",\\\\\\\"support.type.object.rw.hlsl\\\\\\\",\\\\\\\"support.type.fx.hlsl\\\\\\\",\\\\\\\"support.type.object.hlsl\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"text.variable\\\\\\\",\\\\\\\"text.bracketed\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.type.swift\\\\\\\",\\\\\\\"support.type.vb.asp\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.name.function.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.name.class.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.character.character-class.regexp.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.regexp.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"keyword.control.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"invalid.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"beginning.punctuation.definition.quote.markdown.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#7f848e\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"beginning.punctuation.definition.list.markdown.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.character.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"accent.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"wikiword.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#ffffff\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.other.color.rgb-value.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#5c6370\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"punctuation.definition.tag.xi\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.name.label.cs\\\\\\\",\\\\\\\"entity.name.scope-resolution.function.call\\\\\\\",\\\\\\\"entity.name.scope-resolution.function.definition\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.name.label.cs\\\\\\\",\\\\\\\"markup.heading.setext.1.markdown\\\\\\\",\\\\\\\"markup.heading.setext.2.markdown\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\" meta.brace.square\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"italic\\\\\\\",\\\\\\\"foreground\\\\\\\":\\\\\\\"#7f848e\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"comment, punctuation.definition.comment\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#5c6370\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.quote.markdown\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.block.sequence.item.yaml\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.language.symbol.elixir\\\\\\\",\\\\\\\"constant.language.symbol.double-quoted.elixir\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.name.variable.parameter.cs\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.name.variable.field.cs\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.deleted\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#98c379\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.inserted\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"underline\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.underline\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#BE5046\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"punctuation.section.embedded.begin.php\\\\\\\",\\\\\\\"punctuation.section.embedded.end.php\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.other.namespace.php\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"variable.other.object\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"variable.other.constant.property\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"entity.other.inherited-class\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#e06c75\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.other.readwrite.c\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.variable.parameter.php,punctuation.separator.colon.php,constant.other.php\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#c678dd\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"constant.numeric.decimal.asm.x86_64\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"italic\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.other.attribute-name.js,entity.other.attribute-name.ts,entity.other.attribute-name.jsx,entity.other.attribute-name.tsx,variable.parameter,variable.language.super\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"italic\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"comment.line.double-slash,comment.block.documentation\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"italic\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.control.import.python,keyword.control.flow.python,keyword.operator.logical.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\"italic\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.italic.markdown\\\\\\\"}],\\\\\\\"semanticTokenRules\\\\\\\":[{\\\\\\\"_selector\\\\\\\":\\\\\\\"enumMember\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#56b6c2\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null,\\\\\\\"_strikethrough\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"variable.constant\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null,\\\\\\\"_strikethrough\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"variable.defaultLibrary\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#e5c07b\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null,\\\\\\\"_strikethrough\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"variable:dart\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null,\\\\\\\"_strikethrough\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"property:dart\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null,\\\\\\\"_strikethrough\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"annotation:dart\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null,\\\\\\\"_strikethrough\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"parameter.label:dart\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null,\\\\\\\"_strikethrough\\\\\\\":null}},{\\\\\\\"_selector\\\\\\\":\\\\\\\"macro\\\\\\\",\\\\\\\"_style\\\\\\\":{\\\\\\\"_foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\",\\\\\\\"_bold\\\\\\\":null,\\\\\\\"_underline\\\\\\\":null,\\\\\\\"_italic\\\\\\\":null,\\\\\\\"_strikethrough\\\\\\\":null}}],\\\\\\\"extensionData\\\\\\\":{\\\\\\\"_extensionId\\\\\\\":\\\\\\\"zhuangtongfa.material-theme\\\\\\\",\\\\\\\"_extensionIsBuiltin\\\\\\\":false,\\\\\\\"_extensionName\\\\\\\":\\\\\\\"material-theme\\\\\\\",\\\\\\\"_extensionPublisher\\\\\\\":\\\\\\\"zhuangtongfa\\\\\\\"},\\\\\\\"themeSemanticHighlighting\\\\\\\":true,\\\\\\\"colorMap\\\\\\\":{\\\\\\\"activityBar.background\\\\\\\":\\\\\\\"#282c34\\\\\\\",\\\\\\\"activityBar.foreground\\\\\\\":\\\\\\\"#d7dae0\\\\\\\",\\\\\\\"activityBarBadge.background\\\\\\\":\\\\\\\"#4d78cc\\\\\\\",\\\\\\\"activityBarBadge.foreground\\\\\\\":\\\\\\\"#f8fafd\\\\\\\",\\\\\\\"badge.background\\\\\\\":\\\\\\\"#282c34\\\\\\\",\\\\\\\"button.background\\\\\\\":\\\\\\\"#404754\\\\\\\",\\\\\\\"button.secondaryBackground\\\\\\\":\\\\\\\"#30333d\\\\\\\",\\\\\\\"button.secondaryForeground\\\\\\\":\\\\\\\"#c0bdbd\\\\\\\",\\\\\\\"checkbox.border\\\\\\\":\\\\\\\"#404754\\\\\\\",\\\\\\\"debugToolBar.background\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"descriptionForeground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\",\\\\\\\"diffEditor.insertedTextBackground\\\\\\\":\\\\\\\"#00809b33\\\\\\\",\\\\\\\"dropdown.background\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"dropdown.border\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"editor.background\\\\\\\":\\\\\\\"#282c34\\\\\\\",\\\\\\\"editor.findMatchBackground\\\\\\\":\\\\\\\"#42557b\\\\\\\",\\\\\\\"editor.findMatchBorder\\\\\\\":\\\\\\\"#457dff\\\\\\\",\\\\\\\"editor.findMatchHighlightBackground\\\\\\\":\\\\\\\"#6199ff2f\\\\\\\",\\\\\\\"editor.foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\",\\\\\\\"editorHoverWidget.highlightForeground\\\\\\\":\\\\\\\"#61afef\\\\\\\",\\\\\\\"editorInlayHint.foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\",\\\\\\\"editorInlayHint.background\\\\\\\":\\\\\\\"#2c313c\\\\\\\",\\\\\\\"editor.lineHighlightBackground\\\\\\\":\\\\\\\"#2c313c\\\\\\\",\\\\\\\"editorLineNumber.activeForeground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\",\\\\\\\"editorGutter.addedBackground\\\\\\\":\\\\\\\"#109868\\\\\\\",\\\\\\\"editorGutter.deletedBackground\\\\\\\":\\\\\\\"#9a353d\\\\\\\",\\\\\\\"editorGutter.modifiedBackground\\\\\\\":\\\\\\\"#948b60\\\\\\\",\\\\\\\"editorOverviewRuler.addedBackground\\\\\\\":\\\\\\\"#109868\\\\\\\",\\\\\\\"editorOverviewRuler.deletedBackground\\\\\\\":\\\\\\\"#9a353d\\\\\\\",\\\\\\\"editorOverviewRuler.modifiedBackground\\\\\\\":\\\\\\\"#948b60\\\\\\\",\\\\\\\"editor.selectionBackground\\\\\\\":\\\\\\\"#67769660\\\\\\\",\\\\\\\"editor.selectionHighlightBackground\\\\\\\":\\\\\\\"#ffffff10\\\\\\\",\\\\\\\"editor.selectionHighlightBorder\\\\\\\":\\\\\\\"#dddddd\\\\\\\",\\\\\\\"editor.wordHighlightBackground\\\\\\\":\\\\\\\"#d2e0ff2f\\\\\\\",\\\\\\\"editor.wordHighlightBorder\\\\\\\":\\\\\\\"#7f848e\\\\\\\",\\\\\\\"editor.wordHighlightStrongBackground\\\\\\\":\\\\\\\"#abb2bf26\\\\\\\",\\\\\\\"editor.wordHighlightStrongBorder\\\\\\\":\\\\\\\"#7f848e\\\\\\\",\\\\\\\"editorActiveLineNumber.foreground\\\\\\\":\\\\\\\"#737984\\\\\\\",\\\\\\\"editorBracketMatch.background\\\\\\\":\\\\\\\"#515a6b\\\\\\\",\\\\\\\"editorBracketMatch.border\\\\\\\":\\\\\\\"#515a6b\\\\\\\",\\\\\\\"editorCursor.background\\\\\\\":\\\\\\\"#ffffffc9\\\\\\\",\\\\\\\"editorCursor.foreground\\\\\\\":\\\\\\\"#528bff\\\\\\\",\\\\\\\"editorError.foreground\\\\\\\":\\\\\\\"#c24038\\\\\\\",\\\\\\\"editorGroup.background\\\\\\\":\\\\\\\"#181a1f\\\\\\\",\\\\\\\"editorGroup.border\\\\\\\":\\\\\\\"#181a1f\\\\\\\",\\\\\\\"editorGroupHeader.tabsBackground\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"editorHoverWidget.background\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"editorHoverWidget.border\\\\\\\":\\\\\\\"#181a1f\\\\\\\",\\\\\\\"editorIndentGuide.activeBackground\\\\\\\":\\\\\\\"#c8c8c859\\\\\\\",\\\\\\\"editorIndentGuide.background\\\\\\\":\\\\\\\"#3b4048\\\\\\\",\\\\\\\"editorLineNumber.foreground\\\\\\\":\\\\\\\"#495162\\\\\\\",\\\\\\\"editorMarkerNavigation.background\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"editorRuler.foreground\\\\\\\":\\\\\\\"#abb2bf26\\\\\\\",\\\\\\\"editorSuggestWidget.background\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"editorSuggestWidget.border\\\\\\\":\\\\\\\"#181a1f\\\\\\\",\\\\\\\"editorSuggestWidget.selectedBackground\\\\\\\":\\\\\\\"#2c313a\\\\\\\",\\\\\\\"editorWarning.foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\",\\\\\\\"editorWhitespace.foreground\\\\\\\":\\\\\\\"#3b4048\\\\\\\",\\\\\\\"editorWidget.background\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"focusBorder\\\\\\\":\\\\\\\"#3e4452\\\\\\\",\\\\\\\"gitDecoration.ignoredResourceForeground\\\\\\\":\\\\\\\"#636b78\\\\\\\",\\\\\\\"input.background\\\\\\\":\\\\\\\"#1d1f23\\\\\\\",\\\\\\\"list.activeSelectionBackground\\\\\\\":\\\\\\\"#2c313a\\\\\\\",\\\\\\\"list.activeSelectionForeground\\\\\\\":\\\\\\\"#d7dae0\\\\\\\",\\\\\\\"list.focusBackground\\\\\\\":\\\\\\\"#323842\\\\\\\",\\\\\\\"list.focusForeground\\\\\\\":\\\\\\\"#f0f0f0\\\\\\\",\\\\\\\"list.highlightForeground\\\\\\\":\\\\\\\"#c5c5c5\\\\\\\",\\\\\\\"list.hoverBackground\\\\\\\":\\\\\\\"#2c313a\\\\\\\",\\\\\\\"list.hoverForeground\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"list.inactiveSelectionBackground\\\\\\\":\\\\\\\"#323842\\\\\\\",\\\\\\\"list.inactiveSelectionForeground\\\\\\\":\\\\\\\"#d7dae0\\\\\\\",\\\\\\\"list.warningForeground\\\\\\\":\\\\\\\"#d19a66\\\\\\\",\\\\\\\"menu.foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\",\\\\\\\"menu.separatorBackground\\\\\\\":\\\\\\\"#343a45\\\\\\\",\\\\\\\"minimapGutter.addedBackground\\\\\\\":\\\\\\\"#109868\\\\\\\",\\\\\\\"minimapGutter.deletedBackground\\\\\\\":\\\\\\\"#9a353d\\\\\\\",\\\\\\\"minimapGutter.modifiedBackground\\\\\\\":\\\\\\\"#948b60\\\\\\\",\\\\\\\"panel.border\\\\\\\":\\\\\\\"#3e4452\\\\\\\",\\\\\\\"panelSectionHeader.background\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"peekViewEditor.background\\\\\\\":\\\\\\\"#1b1d23\\\\\\\",\\\\\\\"peekViewEditor.matchHighlightBackground\\\\\\\":\\\\\\\"#29244b\\\\\\\",\\\\\\\"peekViewResult.background\\\\\\\":\\\\\\\"#22262b\\\\\\\",\\\\\\\"scrollbar.shadow\\\\\\\":\\\\\\\"#23252c\\\\\\\",\\\\\\\"scrollbarSlider.activeBackground\\\\\\\":\\\\\\\"#747d9180\\\\\\\",\\\\\\\"scrollbarSlider.background\\\\\\\":\\\\\\\"#4e566660\\\\\\\",\\\\\\\"scrollbarSlider.hoverBackground\\\\\\\":\\\\\\\"#5a637580\\\\\\\",\\\\\\\"settings.focusedRowBackground\\\\\\\":\\\\\\\"#282c34\\\\\\\",\\\\\\\"settings.headerForeground\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"sideBar.background\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"sideBar.foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\",\\\\\\\"sideBarSectionHeader.background\\\\\\\":\\\\\\\"#282c34\\\\\\\",\\\\\\\"sideBarSectionHeader.foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\",\\\\\\\"statusBar.background\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"statusBar.debuggingBackground\\\\\\\":\\\\\\\"#cc6633\\\\\\\",\\\\\\\"statusBar.debuggingBorder\\\\\\\":\\\\\\\"#66017a\\\\\\\",\\\\\\\"statusBar.debuggingForeground\\\\\\\":\\\\\\\"#ffffff\\\\\\\",\\\\\\\"statusBar.foreground\\\\\\\":\\\\\\\"#9da5b4\\\\\\\",\\\\\\\"statusBar.noFolderBackground\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"statusBarItem.hoverBackground\\\\\\\":\\\\\\\"#2c313a\\\\\\\",\\\\\\\"statusBarItem.remoteBackground\\\\\\\":\\\\\\\"#4d78cc\\\\\\\",\\\\\\\"statusBarItem.remoteForeground\\\\\\\":\\\\\\\"#f8fafd\\\\\\\",\\\\\\\"tab.activeBackground\\\\\\\":\\\\\\\"#282c34\\\\\\\",\\\\\\\"tab.activeForeground\\\\\\\":\\\\\\\"#dcdcdc\\\\\\\",\\\\\\\"tab.border\\\\\\\":\\\\\\\"#181a1f\\\\\\\",\\\\\\\"tab.hoverBackground\\\\\\\":\\\\\\\"#323842\\\\\\\",\\\\\\\"tab.inactiveBackground\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"tab.unfocusedHoverBackground\\\\\\\":\\\\\\\"#323842\\\\\\\",\\\\\\\"terminal.ansiBlack\\\\\\\":\\\\\\\"#3f4451\\\\\\\",\\\\\\\"terminal.ansiBlue\\\\\\\":\\\\\\\"#4aa5f0\\\\\\\",\\\\\\\"terminal.ansiBrightBlack\\\\\\\":\\\\\\\"#4f5666\\\\\\\",\\\\\\\"terminal.ansiBrightBlue\\\\\\\":\\\\\\\"#4dc4ff\\\\\\\",\\\\\\\"terminal.ansiBrightCyan\\\\\\\":\\\\\\\"#4cd1e0\\\\\\\",\\\\\\\"terminal.ansiBrightGreen\\\\\\\":\\\\\\\"#a5e075\\\\\\\",\\\\\\\"terminal.ansiBrightMagenta\\\\\\\":\\\\\\\"#de73ff\\\\\\\",\\\\\\\"terminal.ansiBrightRed\\\\\\\":\\\\\\\"#ff616e\\\\\\\",\\\\\\\"terminal.ansiBrightWhite\\\\\\\":\\\\\\\"#d7dae0\\\\\\\",\\\\\\\"terminal.ansiBrightYellow\\\\\\\":\\\\\\\"#f0a45d\\\\\\\",\\\\\\\"terminal.ansiCyan\\\\\\\":\\\\\\\"#42b3c2\\\\\\\",\\\\\\\"terminal.ansiGreen\\\\\\\":\\\\\\\"#8cc265\\\\\\\",\\\\\\\"terminal.ansiMagenta\\\\\\\":\\\\\\\"#c162de\\\\\\\",\\\\\\\"terminal.ansiRed\\\\\\\":\\\\\\\"#e05561\\\\\\\",\\\\\\\"terminal.ansiWhite\\\\\\\":\\\\\\\"#e6e6e6\\\\\\\",\\\\\\\"terminal.ansiYellow\\\\\\\":\\\\\\\"#d18f52\\\\\\\",\\\\\\\"terminal.background\\\\\\\":\\\\\\\"#282c34\\\\\\\",\\\\\\\"terminal.border\\\\\\\":\\\\\\\"#3e4452\\\\\\\",\\\\\\\"terminal.foreground\\\\\\\":\\\\\\\"#abb2bf\\\\\\\",\\\\\\\"terminal.selectionBackground\\\\\\\":\\\\\\\"#abb2bf30\\\\\\\",\\\\\\\"textBlockQuote.background\\\\\\\":\\\\\\\"#2e3440\\\\\\\",\\\\\\\"textBlockQuote.border\\\\\\\":\\\\\\\"#4b5362\\\\\\\",\\\\\\\"textLink.foreground\\\\\\\":\\\\\\\"#61afef\\\\\\\",\\\\\\\"textPreformat.foreground\\\\\\\":\\\\\\\"#d19a66\\\\\\\",\\\\\\\"titleBar.activeBackground\\\\\\\":\\\\\\\"#282c34\\\\\\\",\\\\\\\"titleBar.activeForeground\\\\\\\":\\\\\\\"#9da5b4\\\\\\\",\\\\\\\"titleBar.inactiveBackground\\\\\\\":\\\\\\\"#21252b\\\\\\\",\\\\\\\"titleBar.inactiveForeground\\\\\\\":\\\\\\\"#6b717d\\\\\\\",\\\\\\\"walkThrough.embeddedEditorBackground\\\\\\\":\\\\\\\"#2e3440\\\\\\\",\\\\\\\"welcomePage.buttonHoverBackground\\\\\\\":\\\\\\\"#404754\\\\\\\"},\\\\\\\"watch\\\\\\\":false}\\\"},\\\"workbench.sideBar.position\\\":{\\\"version\\\":1,\\\"value\\\":\\\"0\\\"},\\\"workbench.panel.alignment\\\":{\\\"version\\\":1,\\\"value\\\":\\\"center\\\"},\\\"workbench.activityBar.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"false\\\"},\\\"workbench.statusBar.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"true\\\"},\\\"commandPalette.mru.cache\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"usesLRU\\\\\\\":true,\\\\\\\"entries\\\\\\\":[{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.selectTheme\\\\\\\",\\\\\\\"value\\\\\\\":1},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.downloadSettings\\\\\\\",\\\\\\\"value\\\\\\\":8},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.userDataSync.actions.syncNow\\\\\\\",\\\\\\\"value\\\\\\\":9},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.openGlobalKeybindingsFile\\\\\\\",\\\\\\\"value\\\\\\\":10}]}\\\"},\\\"commandPalette.mru.counter\\\":{\\\"version\\\":1,\\\"value\\\":\\\"11\\\"},\\\"workbench.view.sync.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.sync.merges\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.sync.remoteActivity\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.sync.machines\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.sync.localActivity\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.sync.troubleshoot\\\\\\\",\\\\\\\"isHidden\\\\\\\":true}]\\\"},\\\"workbench.welcomePage.walkthroughMetadata\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[[\\\\\\\"cyrilletuzi.angular-schematics#angularschematics\\\\\\\",{\\\\\\\"firstSeen\\\\\\\":1644014094563,\\\\\\\"stepIDs\\\\\\\":[\\\\\\\"documentation\\\\\\\",\\\\\\\"openfolder\\\\\\\",\\\\\\\"scmclean\\\\\\\",\\\\\\\"firstgeneration\\\\\\\",\\\\\\\"troubleshooting\\\\\\\",\\\\\\\"generatecomponent\\\\\\\",\\\\\\\"advanced\\\\\\\",\\\\\\\"schematicspro\\\\\\\"],\\\\\\\"manaullyOpened\\\\\\\":false}]]\\\"},\\\"workbench.view.extension.gitlens.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.welcome\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.project-manager.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"projectsExplorerFavorites\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"projectsExplorerGit\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"projectsExplorerSVN\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"projectsExplorerAny\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"projectsExplorerMercurial\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"projectsExplorerVSCode\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"projectManagerHelpAndFeedback\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.serverlessConsole.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"slsConsoleTree\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"}}}\"}"}
{"ref":"fafe6771-e8bf-4e9a-b9de-c57e60f1841f","content":"{\"version\":2,\"machineId\":\"35991204-fb47-40bb-b2f5-0069afac8723\",\"content\":\"{\\\"mac\\\":\\\"// Place your key bindings in this file to overwrite the defaults\\\\n[\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+b\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.goToDeclaration\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+right\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.nextEditor\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+left\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.previousEditor\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+up\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.insertCursorAbove\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+down\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.insertCursorBelow\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+alt+down\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.moveLinesDownAction\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+alt+up\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.moveLinesUpAction\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+7\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.blockComment\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+cmd+l\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.formatDocument\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+r\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.showAllSymbols\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+cmd+r\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.gotoSymbol\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+9\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.view.debug\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+8\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.view.extensions\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+5\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.view.scm\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+3\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.toggleStatusbarVisibility\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+4\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.toggleActivityBarVisibility\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+cmd+left\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.navigateBack\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+cmd+right\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.navigateForward\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+t\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.terminal.toggleTerminal\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+o\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.files.openFileFolder\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+e\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.openRecent\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+cmd+w\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.closeWindow\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+w\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.closeActiveEditor\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+1\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.view.explorer\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+cmd+d\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.copyLinesDownAction\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+0\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.fontZoomReset\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+right\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.terminal.focusNext\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+t\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.terminal.new\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+w\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.terminal.kill\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+cmd+b\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.referenceSearch.trigger\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorHasReferenceProvider && editorTextFocus && !inReferenceSearchEditor && !isInEmbeddedEditor\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+-\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.fold\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+-\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.foldRecursively\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+f6\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.rename\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorHasRenameProvider && editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+cmd+9\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.debug.start\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"!inDebugMode\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"f8\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.debug.stepOver\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"inDebugMode\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"f7\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.debug.stepInto\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"inDebugMode\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+f8\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.debug.stepOut\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"inDebugMode\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+[BracketRight]\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.unfold\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+[BracketRight]\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.unfoldRecursively\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"f9\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.debug.continue\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"inDebugMode\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+[BracketRight]\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.fontZoomIn\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+-\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.fontZoomOut\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+2\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.toggleSidebarVisibility\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+cmd+n\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.newWindow\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+cmd+n\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"extension.advancedNewFile\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+n\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"fileutils.newFolderAtRoot\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"cmd+g\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.gotoLine\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+cmd+1\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.editorLayoutSingle\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+cmd+2\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.editorLayoutTwoColumns\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+cmd+o\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"projectManager.listProjects\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+enter\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.showContextMenu\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"textInputFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+g\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.addSelectionToNextFindMatch\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+g\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.selectHighlights\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorFocus\\\\\\\"\\\\n },\\\\n { \\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+cmd+[BracketRight]\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.quickSwitchWindow\\\\\\\"\\\\n }\\\\n]\\\"}\"}","platformSpecific":true}
{"ref":"ef687e74-7c2b-4821-8e4f-4b02aaf497c4","content":"{\"version\":2,\"machineId\":\"35991204-fb47-40bb-b2f5-0069afac8723\",\"content\":\"{\\\"settings\\\":\\\"{\\\\n \\\\\\\"editor.minimap.enabled\\\\\\\": false,\\\\n \\\\\\\"workbench.colorTheme\\\\\\\": \\\\\\\"One Dark Pro\\\\\\\",\\\\n \\\\\\\"workbench.statusBar.visible\\\\\\\": false,\\\\n \\\\\\\"editor.fontSize\\\\\\\": 16,\\\\n \\\\\\\"editor.fontFamily\\\\\\\": \\\\\\\"Menlo\\\\\\\",\\\\n \\\\\\\"editor.wordWrap\\\\\\\": \\\\\\\"on\\\\\\\",\\\\n \\\\\\\"php.executablePath\\\\\\\": \\\\\\\"/usr/bin/php\\\\\\\",\\\\n \\\\\\\"files.exclude\\\\\\\": {\\\\n \\\\\\\"**/.cache\\\\\\\": true,\\\\n \\\\\\\"**/.DS_Store\\\\\\\": true,\\\\n \\\\\\\"**/.git\\\\\\\": true,\\\\n \\\\\\\"**/.hg\\\\\\\": true,\\\\n \\\\\\\"**/.idea\\\\\\\": true,\\\\n \\\\\\\"**/.svn\\\\\\\": true,\\\\n \\\\\\\"**/.vscode\\\\\\\": true,\\\\n \\\\\\\"**/CVS\\\\\\\": true,\\\\n \\\\\\\"**/node_modules\\\\\\\": true,\\\\n \\\\\\\"**/.dynamodb\\\\\\\": true,\\\\n \\\\\\\"**/.nyc_output\\\\\\\": true,\\\\n \\\\\\\"**/.serverless\\\\\\\": true,\\\\n \\\\\\\"**/.webpack\\\\\\\": true\\\\n },\\\\n \\\\\\\"search.exclude\\\\\\\": {\\\\n \\\\\\\"**/.cache\\\\\\\": true,\\\\n \\\\\\\"**/.DS_Store\\\\\\\": true,\\\\n \\\\\\\"**/.git\\\\\\\": true,\\\\n \\\\\\\"**/.hg\\\\\\\": true,\\\\n \\\\\\\"**/.idea\\\\\\\": true,\\\\n \\\\\\\"**/.svn\\\\\\\": true,\\\\n \\\\\\\"**/.vscode\\\\\\\": true,\\\\n \\\\\\\"**/node_modules\\\\\\\": true,\\\\n \\\\\\\"**/.dynamodb\\\\\\\": true,\\\\n \\\\\\\"**/.nyc_output\\\\\\\": true,\\\\n \\\\\\\"**/.serverless\\\\\\\": true,\\\\n \\\\\\\"**/.webpack\\\\\\\": true,\\\\n \\\\\\\"**/dist\\\\\\\": true,\\\\n \\\\\\\"**/coverage\\\\\\\": true,\\\\n },\\\\n \\\\\\\"workbench.activityBar.visible\\\\\\\": true,\\\\n \\\\\\\"workbench.startupEditor\\\\\\\": \\\\\\\"newUntitledFile\\\\\\\",\\\\n \\\\\\\"workbench.sideBar.location\\\\\\\": \\\\\\\"left\\\\\\\",\\\\n \\\\\\\"workbench.editor.enablePreview\\\\\\\": false,\\\\n \\\\\\\"tslint.rulesDirectory\\\\\\\": \\\\\\\"./node_modules/codelyzer\\\\\\\",\\\\n \\\\\\\"typescript.tsdk\\\\\\\": \\\\\\\"node_modules/typescript/lib\\\\\\\",\\\\n \\\\\\\"sync.gist\\\\\\\": \\\\\\\"d1957f30ba71788cb98c42c786624a49\\\\\\\",\\\\n \\\\\\\"sync.autoUpload\\\\\\\": true,\\\\n \\\\\\\"sync.quietSync\\\\\\\": true,\\\\n \\\\\\\"explorer.openEditors.visible\\\\\\\": 0,\\\\n \\\\\\\"explorer.confirmDelete\\\\\\\": true,\\\\n \\\\\\\"diffEditor.renderSideBySide\\\\\\\": true,\\\\n \\\\\\\"gitlens.codeLens.recentChange.enabled\\\\\\\": false,\\\\n \\\\\\\"gitlens.codeLens.authors.enabled\\\\\\\": false,\\\\n \\\\\\\"gitlens.codeLens.enabled\\\\\\\": true,\\\\n \\\\\\\"gitlens.currentLine.enabled\\\\\\\": false,\\\\n \\\\\\\"gitlens.hovers.currentLine.over\\\\\\\": \\\\\\\"line\\\\\\\",\\\\n \\\\\\\"gitlens.hovers.enabled\\\\\\\": false,\\\\n \\\\\\\"gitlens.mode.statusBar.enabled\\\\\\\": false,\\\\n \\\\\\\"gitlens.statusBar.enabled\\\\\\\": false,\\\\n \\\\\\\"debug.node.autoAttach\\\\\\\": \\\\\\\"on\\\\\\\",\\\\n \\\\\\\"breadcrumbs.enabled\\\\\\\": false,\\\\n \\\\\\\"gitlens.views.compare.files.layout\\\\\\\": \\\\\\\"list\\\\\\\",\\\\n \\\\\\\"bracketPairColorizer.showHorizontalScopeLine\\\\\\\": false,\\\\n \\\\\\\"[javascript]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"editor.renameOnType\\\\\\\": true,\\\\n \\\\\\\"[json]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"vscode.json-language-features\\\\\\\"\\\\n },\\\\n \\\\\\\"editor.renderWhitespace\\\\\\\": \\\\\\\"none\\\\\\\",\\\\n \\\\\\\"workbench.editor.showTabs\\\\\\\": true\\\\n}\\\"}\"}"}
{"ref":"76883d05-7ff7-4fbd-9fdd-4ce37c10ba1a","content":"{\"version\":1,\"machineId\":\"35991204-fb47-40bb-b2f5-0069afac8723\",\"content\":\"{\\\"javascript.json\\\":\\\"{\\\\n\\\\t// Place your snippets for javascript here. Each snippet is defined under a snippet name and has a prefix, body and \\\\n\\\\t// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:\\\\n\\\\t// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the \\\\n\\\\t// same ids are connected.\\\\n\\\\t// Example:\\\\n\\\\t// \\\\\\\"Print to console\\\\\\\": {\\\\n\\\\t// \\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"log\\\\\\\",\\\\n\\\\t// \\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t// \\\\t\\\\t\\\\\\\"console.log('$1');\\\\\\\",\\\\n\\\\t// \\\\t\\\\t\\\\\\\"$2\\\\\\\"\\\\n\\\\t// \\\\t],\\\\n\\\\t// \\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log output to console\\\\\\\"\\\\n\\\\t// }\\\\n\\\\t\\\\\\\"Log text to console\\\\\\\" : {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"cont\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"console.warn('${1:text}');\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log text to console\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\\\\"Log value to console\\\\\\\" : {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"conv\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"console.warn('${1:value}', ${1:value});\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log value to console\\\\\\\"\\\\n\\\\t}\\\\n}\\\",\\\"typescript.json\\\":\\\"{\\\\n\\\\t// Place your snippets for typescript here. Each snippet is defined under a snippet name and has a prefix, body and \\\\n\\\\t// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:\\\\n\\\\t// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the \\\\n\\\\t// same ids are connected.\\\\n\\\\t// Example:\\\\n\\\\t// \\\\\\\"Print to console\\\\\\\": {\\\\n\\\\t// \\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"log\\\\\\\",\\\\n\\\\t// \\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t// \\\\t\\\\t\\\\\\\"console.log('$1');\\\\\\\",\\\\n\\\\t// \\\\t\\\\t\\\\\\\"$2\\\\\\\"\\\\n\\\\t// \\\\t],\\\\n\\\\t// \\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log output to console\\\\\\\"\\\\n\\\\t// }\\\\n\\\\t\\\\\\\"Log text to console\\\\\\\" : {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"cont\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"console.warn('${1:text}');\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log text to console\\\\\\\"\\\\n\\\\t},\\\\n\\\\t\\\\\\\"Log value to console\\\\\\\" : {\\\\n\\\\t\\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"conv\\\\\\\",\\\\n\\\\t\\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t\\\\t\\\\t\\\\\\\"console.warn('${1:value}', ${1:value});\\\\\\\"\\\\n\\\\t\\\\t],\\\\n\\\\t\\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log value to console\\\\\\\"\\\\n\\\\t}\\\\n}\\\"}\"}"}
{"ref":"0","content":null}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment