Skip to content

Instantly share code, notes, and snippets.

@abhaypatil2000
Last active September 17, 2022 11:28
Show Gist options
  • Save abhaypatil2000/b80860795c41e3a0c9fb45e7f34b81d3 to your computer and use it in GitHub Desktop.
Save abhaypatil2000/b80860795c41e3a0c9fb45e7f34b81d3 to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
{"lastUpload":"2022-02-11T17:22:57.913Z","extensionVersion":"v3.4.3"}
[
{
"metadata": {
"id": "7a0110bb-231a-4598-aa1b-0769ea46d28b",
"publisherId": "aaron-bond.better-comments",
"publisherDisplayName": "aaron-bond"
},
"name": "better-comments",
"publisher": "aaron-bond",
"version": "2.1.0"
},
{
"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": "5db78037-f674-459f-a236-db622c427c5b",
"publisherId": "PKief.material-icon-theme",
"publisherDisplayName": "PKief"
},
"name": "material-icon-theme",
"publisher": "PKief",
"version": "4.13.0"
},
{
"metadata": {
"id": "93ce222b-5f6f-49b7-9ab1-a0463c6238df",
"publisherId": "ms-vscode-remote.remote-containers",
"publisherDisplayName": "ms-vscode-remote"
},
"name": "remote-containers",
"publisher": "ms-vscode-remote",
"version": "0.217.2"
}
]
{
"workspaceFolder": "/home",
"extensions": [
"formulahendry.code-runner"
]
}
{
"workspaceFolder": "/home",
"extensions": [
"christian-kohler.path-intellisense",
"formulahendry.code-runner",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-keymap",
"ms-toolsai.jupyter-renderers",
"redhat.java",
"VisualStudioExptTeam.vscodeintellicode",
"vscjava.vscode-java-debug",
"vscjava.vscode-java-dependency",
"vscjava.vscode-java-pack",
"vscjava.vscode-java-test",
"vscjava.vscode-maven"
]
}
{
"$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 override the defaultsauto[]
[
{
"key": "ctrl+k ctrl+d",
"command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+i",
"command": "-editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+k ctrl+d",
"command": "editor.action.formatDocument.none",
"when": "editorTextFocus && !editorHasDocumentFormattingProvider && !editorHasDocumentFormattingProvider && !editorReadonly"
},
{
"key": "ctrl+shift+i",
"command": "-editor.action.formatDocument.none",
"when": "editorTextFocus && !editorHasDocumentFormattingProvider && !editorHasDocumentFormattingProvider && !editorReadonly"
},
{
"key": "ctrl+shift+b",
"command": "-workbench.action.tasks.build"
},
{
"key": "ctrl+shift+b",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+b",
"command": "-workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+f5",
"command": "workbench.action.debug.start",
"when": "!inDebugMode"
},
{
"key": "f5",
"command": "-workbench.action.debug.start",
"when": "!inDebugMode"
},
{
"key": "ctrl+f5",
"command": "workbench.action.debug.continue",
"when": "inDebugMode"
},
{
"key": "f5",
"command": "-workbench.action.debug.continue",
"when": "inDebugMode"
},
{
"key": "f5",
"command": "workbench.action.debug.run"
},
{
"key": "ctrl+f5",
"command": "-workbench.action.debug.run"
},
{
"key": "ctrl+b",
"command": "workbench.action.tasks.build"
},
{
"key": "ctrl+d",
"command": "-editor.action.addSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "ctrl+d",
"command": "editor.action.duplicateSelection"
},
{
"key": "ctrl+k ctrl+z",
"command": "workbench.action.toggleZenMode"
},
{
"key": "ctrl+k z",
"command": "-workbench.action.toggleZenMode"
},
{
"key": "ctrl+r",
"command": "-workbench.action.openRecent"
},
{
"key": "alt+right",
"command": "-workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "alt+right",
"command": "editor.action.moveCarretRightAction"
},
{
"key": "alt+left",
"command": "-workbench.action.terminal.focusPreviousPane",
"when": "terminalFocus"
},
{
"key": "alt+left",
"command": "editor.action.moveCarretLeftAction"
},
{
"key": "ctrl+shift+s",
"command": "-workbench.action.files.saveAs"
},
{
"key": "ctrl+shift+s",
"command": "-workbench.action.files.saveLocalFile",
"when": "remoteFileDialogVisible"
},
{
"key": "ctrl+shift+s",
"command": "saveAll"
},
{
"key": "alt+d",
"command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+shift+k",
"command": "-editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+shift+\\",
"command": "workbench.action.splitEditorOrthogonal"
},
{
"key": "ctrl+k ctrl+\\",
"command": "-workbench.action.splitEditorOrthogonal"
},
{
"key": "shift+alt+up",
"command": "-editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+\\",
"command": "-editor.action.jumpToBracket",
"when": "editorTextFocus"
},
{
"key": "ctrl+k ctrl+d",
"command": "-editor.action.moveSelectionToNextFindMatch",
"when": "editorFocus"
},
{
"key": "shift+alt+down",
"command": "-editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+r",
"command": "workbench.action.terminal.split",
"when": "terminalFocus && terminalProcessSupported"
},
{
"key": "ctrl+shift+5",
"command": "-workbench.action.terminal.split",
"when": "terminalFocus && terminalProcessSupported"
},
{
"key": "ctrl+alt+r",
"command": "-revealFileInOS",
"when": "!editorFocus"
},
{
"key": "alt+q",
"command": "workbench.action.togglePanel"
},
{
"key": "ctrl+shift+tab",
"command": "-workbench.action.quickOpenLeastRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+tab",
"command": "-workbench.action.quickOpenPreviousRecentlyUsedEditorInGroup"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+pagedown",
"command": "-workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
},
{
"key": "ctrl+pageup",
"command": "-workbench.action.previousEditor"
},
{
"key": "shift+alt+u",
"command": "-java.projectConfiguration.update",
"when": "editorFocus"
},
{
"key": "ctrl+n",
"command": "explorer.newFile"
},
{
"key": "ctrl+shift+n",
"command": "explorer.newFolder"
},
{
"key": "ctrl+n",
"command": "-workbench.action.files.newUntitledFile"
},
{
"key": "ctrl+shift+n",
"command": "-workbench.action.newWindow"
}
]
{
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"python.jediEnabled": false,
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"code-runner.runInTerminal": true,
"workbench.editor.highlightModifiedTabs": true,
"explorer.sortOrder": "type",
"editor.cursorBlinking": "smooth",
"editor.acceptSuggestionOnEnter": "off",
"sync.gist": "b80860795c41e3a0c9fb45e7f34b81d3",
"code-runner.saveAllFilesBeforeRun": true,
"code-runner.saveFileBeforeRun": true,
"code-runner.executorMap": {
"javascript": "node",
"java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
"c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"cpp": "cd $dir && g++ -std=c++17 $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
"php": "php",
"python": "python3 -u",
"perl": "perl",
"perl6": "perl6",
"ruby": "ruby",
"go": "go run",
"lua": "lua",
"groovy": "groovy",
"powershell": "powershell -ExecutionPolicy ByPass -File",
"bat": "cmd /c",
"shellscript": "bash",
"fsharp": "fsi",
"csharp": "scriptcs",
"vbscript": "cscript //Nologo",
"typescript": "ts-node",
"coffeescript": "coffee",
"scala": "scala",
"swift": "swift",
"julia": "julia",
"crystal": "crystal",
"ocaml": "ocaml",
"r": "Rscript",
"applescript": "osascript",
"clojure": "lein exec",
"haxe": "haxe --cwd $dirWithoutTrailingSlash --run $fileNameWithoutExt",
"rust": "cd $dir && rustc $fileName && $dir$fileNameWithoutExt",
"racket": "racket",
"scheme": "csi -script",
"ahk": "autohotkey",
"autoit": "autoit3",
"dart": "dart",
"pascal": "cd $dir && fpc $fileName && $dir$fileNameWithoutExt",
"d": "cd $dir && dmd $fileName && $dir$fileNameWithoutExt",
"haskell": "runhaskell",
"nim": "nim compile --verbosity:0 --hints:off --run",
"lisp": "sbcl --script",
"kit": "kitc --run",
"v": "v run",
"sass": "sass --style expanded",
"scss": "scss --style expanded"
},
"workbench.editor.scrollToSwitchTabs": true,
"workbench.colorTheme": "Monokai",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/__pycache__": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true,
".venv": true,
},
"liveServer.settings.donotVerifyTags": true,
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.CustomBrowser": "firefox",
"better-comments.highlightPlainText": true,
"better-comments.multilineComments": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"prettier.tabWidth": 4,
"telemetry.telemetryLevel": "off",
"AREPL.telemetry": false,
"python.languageServer": "Pylance",
"python.formatting.provider": "yapf",
"python.formatting.yapfArgs": [
"--style={ based_on_style: pep8}"
],
// "python.formatting.yapfArgs": [
// "--style={ based_on_style: pep8, column_limit: 10000 }"
// ],
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, IndentWidth: 4 }",
"codespaces.accountProvider": "Microsoft",
"python.pythonPath": "/bin/python",
"explorer.confirmDelete": false,
"terminal.external.linuxExec": "tilix",
"c-cpp-compile-run.run-in-external-terminal": true,
"editor.snippetSuggestions": "top",
"C_Cpp.suggestSnippets": false,
// "terminal.integrated.automationShell.linux": "/usr/bin/zsh",
"terminal.integrated.automationProfile.linux": {
"path": "/usr/bin/zsh",
"icon": "account"
},
"terminal.integrated.fontFamily": "Hack Nerd Font",
"debug.console.fontFamily": "default",
"workbench.colorCustomizations": {
"editor.background": "#282923",
"terminal.background": "#282923",
"terminal.foreground": "#D3D7CF",
"terminal.ansiBlack": "#2E3436",
"terminal.ansiBrightBlack": "#555753",
"terminal.ansiRed": "#FF4E55",
"terminal.ansiBrightRed": "#EF2929",
"terminal.ansiGreen": "#C4D543",
"terminal.ansiBrightGreen": "#8AE234",
"terminal.ansiYellow": "#FCE94F",
"terminal.ansiBrightYellow": "#FCE94F",
"terminal.ansiBlue": "#00A6EE",
"terminal.ansiBrightBlue": "#729FCF",
"terminal.ansiMagenta": "#DD3781",
"terminal.ansiBrightMagenta": "#AD7FA8",
"terminal.ansiCyan": "#06989A",
"terminal.ansiBrightCyan": "#34E2E2",
"terminal.ansiWhite": "#EFE7D6",
"terminal.ansiBrightWhite": "#FFF5E4"
},
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"debug.onTaskErrors": "abort",
"editor.fontFamily": "Hack Nerd Font",
"editor.fontWeight": "normal",
"editor.fontSize": 14,
"C_Cpp.default.intelliSenseMode": "gcc-x64",
"C_Cpp.default.cppStandard": "c++17",
"workbench.sideBar.location": "right",
"code-runner.ignoreSelection": true,
"workbench.iconTheme": "material-icon-theme",
"gitlens.hovers.currentLine.over": "annotation",
"security.workspace.trust.enabled": false,
"editor.inlineSuggest.enabled": true,
"github.copilot.enable": {
"*": false,
"yaml": false,
"plaintext": false,
"markdown": false
},
"cph.general.defaultLanguage": "cpp",
"cph.general.useShortCodeForcesName": true,
"cph.language.cpp.Args": "-std=c++17",
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.smoothScrolling": true,
"workbench.list.smoothScrolling": true,
"debug.javascript.usePreview": false
}
{
// Place your snippets for cpp 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"
// }
"template": {
"prefix": "temp",
"body": [
"#include <algorithm>",
"#include <cassert>",
"#include <cfloat>",
"#include <climits>",
"#include <cmath>",
"#include <cstdlib>",
"#include <cstring>",
"#include <deque>",
"#include <iomanip>",
"#include <iostream>",
"#include <iterator>",
"#include <limits>",
"#include <list>",
"#include <map>",
"#include <numeric>",
"#include <queue>",
"#include <set>",
"#include <stack>",
"#include <string>",
"#include <tuple>",
"#include <unordered_map>",
"#include <unordered_set>",
"#include <utility>",
"#include <vector>",
"",
"using namespace std;",
"// #define int long long // remember to make constants use the LL suffix",
"int mox = 1e9 + 7;",
"// #define maxheap(x) priority_queue<(x)>;",
"// #define minheap(x) priority_queue<(x), vector<(x)>, greater<(x)>>;",
"// date : $CURRENT_DATE/$CURRENT_MONTH/$CURRENT_YEAR",
"// time : $CURRENT_HOUR:$CURRENT_MINUTE:$CURRENT_SECOND",
"// numeric_limits",
"#define deb(x) cout << #x << \" = \" << x << endl;",
"// #define LOCAL_PATIL",
"",
"int mpow(int a, int b, int mox) {",
" int ret = 1;",
" while (b) {",
" if (b & 1) {",
" ret = (ret * a) % mox;",
" }",
" a = (a * a) % mox;",
" b = b / 2;",
" }",
" return ret;",
"}",
"",
"int minv(int a) { // return (a ^ (mox - 2)) % mox",
" return mpow(a, mox - 2, mox);",
"}",
"",
"int32_t main() {",
"#if defined(LOCAL_ABHAY) && defined(LOCAL_PATIL)",
" freopen(\"input.txt\", \"r\", stdin);",
" freopen(\"output.txt\", \"w\", stdout);",
"#endif",
" ios_base::sync_with_stdio(0);",
" cin.tie(0);",
" cout.tie(0);",
" int t, n, i, j, k, m, q;",
" string s;",
" t = 1;",
" cin >> t;",
" while (t--) {",
" cin >> n;",
" m = n;",
" // cin >> m;",
" // cin >> k;",
" // cin >> s;",
" // cin >> q;",
" // vector<vector<int>> grid(n, vector<int>(m, 0));",
" vector<int> v(n);",
" for (auto &x : v) cin >> x;",
" $0",
" // vector<int> a(n);",
" // for (auto &x : a)",
" // cin >> x;",
" // vector<int> b(m);",
" // for (auto &x : b)",
" // cin >> x;",
" }",
"#if defined(LOCAL_ABHAY) && defined(LOCAL_PATIL)",
" cout << \"\\nDONE\\n\";",
" cout << time(NULL) % 100;",
"#endif",
"}"
],
"description": "template"
},
"local_abhay": {
"prefix": "abhay",
"body": [
"#if defined(LOCAL_ABHAY) && defined(LOCAL_PATIL)",
" freopen(\"input.txt\", \"r\", stdin);",
" freopen(\"output.txt\", \"w\", stdout);",
"#endif",
"$0"
],
"description": "local_abhay"
},
"local_abhay_2": {
"prefix": "patil",
"body": [
"#if defined(LOCAL_ABHAY) && defined(LOCAL_PATIL)",
" cout << \"\\nDONE\\n\";",
" cout << time(NULL) % 100;",
"#endif"
],
"description": "local_abhay_2"
},
"main": {
"prefix": "main",
"body": [
"int32_t main() {",
"#if defined(LOCAL_ABHAY) && defined(LOCAL_PATIL)",
" freopen(\"input.txt\", \"r\", stdin);",
" freopen(\"output.txt\", \"w\", stdout);",
"#endif",
"",
" $0",
"",
"#if defined(LOCAL_ABHAY) && defined(LOCAL_PATIL)",
" cout << \"\\nDONE\\n\";",
" cout << time(NULL) % 100;",
"#endif",
"}"
],
"description": "main"
},
"fastio": {
"prefix": "fastio",
"body": [
"ios_base::sync_with_stdio(NULL);",
"cin.tie(NULL);",
"cout.tie(NULL);"
],
"description": "fastio"
},
"standard c++ libraries": {
"prefix": "libs",
"body": [
"#include <algorithm>",
"#include <cassert>",
"#include <cfloat>",
"#include <climits>",
"#include <cmath>",
"#include <cstdlib>",
"#include <cstring>",
"#include <deque>",
"#include <iomanip>",
"#include <iostream>",
"#include <iterator>",
"#include <limits>",
"#include <list>",
"#include <map>",
"#include <numeric>",
"#include <queue>",
"#include <set>",
"#include <stack>",
"#include <string>",
"#include <tuple>",
"#include <unordered_map>",
"#include <unordered_set>",
"#include <utility>",
"#include <vector>"
],
"description": "standard c++ libraries"
}
}
{
// Place your snippets for html 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"
// }
"html": {
"prefix": "html",
"body": [
"<!DOCTYPE html>",
"<html>",
"",
"<head>",
"\t<title>$1</title>",
"</head>",
"",
"<body>",
" $2",
"</body>",
"",
"</html>"
],
"description": "html"
},
"PHP Tag": {
"prefix": "php",
"body": [
"<?php",
" $0",
"?>"
],
"description": "PHP Tag"
}
}
{
// Place your snippets for php 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"
// }
"PHP Tag": {
"prefix": "php",
"body": [
"<?php",
" define ('endl', \"<br>\");",
" $0",
"?>"
],
"description": "PHP Tag"
}
}
{"version":5,"content":"[{\"identifier\":{\"id\":\"vscode.bat\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.clojure\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.coffeescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.configuration-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.cpp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.csharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.css-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.dart\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-auto-launch\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.debug-server-ready\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.docker\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.emmet\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.extension-editing\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.fsharp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.git\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.github\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.github-authentication\"},\"version\":\"0.0.2\"},{\"identifier\":{\"id\":\"vscode.go\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.groovy\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.grunt\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.gulp\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.handlebars\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.hlsl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.html-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.image-preview\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ini\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ipynb\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.jake\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.java\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.javascript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.json-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.julia\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.less\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.log\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.lua\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.make\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.markdown-math\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.merge-conflict\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.microsoft-authentication\"},\"version\":\"0.0.1\"},{\"identifier\":{\"id\":\"vscode.npm\"},\"version\":\"1.0.1\"},{\"identifier\":{\"id\":\"vscode.objective-c\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.perl\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.php-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.powershell\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.pug\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.python\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.r\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.razor\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.ruby\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.rust\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.scss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.search-result\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shaderlab\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.shellscript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.simple-browser\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.sql\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.swift\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-abyss\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-defaults\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-kimbie-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-monokai-dimmed\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-quietlight\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-red\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-dark\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-solarized-light\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.theme-tomorrow-night-blue\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.typescript-language-features\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vb\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.vscode-theme-seti\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.xml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"vscode.yaml\"},\"version\":\"1.0.0\"},{\"identifier\":{\"id\":\"ms-vscode-remote.remote-wsl-recommender\",\"uuid\":\"cb296d3c-017a-4dee-83af-ebb5a5a16e9a\"},\"version\":\"0.0.11\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug\",\"uuid\":\"25629058-ddac-4e17-abba-74678e126c5d\"},\"version\":\"1.61.0\"},{\"identifier\":{\"id\":\"ms-vscode.js-debug-companion\",\"uuid\":\"99cb0b7f-7354-4278-b8da-6cc79972169d\"},\"version\":\"1.0.15\"},{\"identifier\":{\"id\":\"ms-vscode.references-view\",\"uuid\":\"dc489f46-520d-4556-ae85-1f9eab3c412d\"},\"version\":\"0.0.81\"},{\"identifier\":{\"id\":\"ms-vscode.vscode-js-profile-table\",\"uuid\":\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\"},\"version\":\"0.0.18\"},{\"identifier\":{\"id\":\"shan.code-settings-sync\",\"uuid\":\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\"},\"version\":\"3.4.3\",\"installed\":true}]"}
[
{
"identifier": {
"id": "vscode.bat"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.clojure"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.coffeescript"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.configuration-editing"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.cpp"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.csharp"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.css"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.css-language-features"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.dart"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.debug-auto-launch"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.debug-server-ready"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.diff"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.docker"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.emmet"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.extension-editing"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.fsharp"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.git"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.git-base"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.github"
},
"version": "0.0.1",
"preRelease": false
},
{
"identifier": {
"id": "vscode.github-authentication"
},
"version": "0.0.2",
"preRelease": false
},
{
"identifier": {
"id": "vscode.go"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.groovy"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.grunt"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.gulp"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.handlebars"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.hlsl"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.html"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.html-language-features"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.image-preview"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.ini"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.ipynb"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.jake"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.java"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.javascript"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.json"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.json-language-features"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.julia"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.less"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.log"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.lua"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.make"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.markdown"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.markdown-language-features"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.markdown-math"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.merge-conflict"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.microsoft-authentication"
},
"version": "0.0.1",
"preRelease": false
},
{
"identifier": {
"id": "vscode.npm"
},
"version": "1.0.1",
"preRelease": false
},
{
"identifier": {
"id": "vscode.objective-c"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.perl"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.php"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.php-language-features"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.powershell"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.pug"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.python"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.r"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.razor"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.ruby"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.rust"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.scss"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.search-result"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.shaderlab"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.shellscript"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.simple-browser"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.sql"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.swift"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.theme-abyss"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.theme-defaults"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.theme-kimbie-dark"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.theme-monokai"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.theme-monokai-dimmed"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.theme-quietlight"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.theme-red"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.theme-solarized-dark"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.theme-solarized-light"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.theme-tomorrow-night-blue"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.typescript"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.typescript-language-features"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.vb"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.vscode-theme-seti"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.xml"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "vscode.yaml"
},
"version": "1.0.0",
"preRelease": false
},
{
"identifier": {
"id": "aaron-bond.better-comments",
"uuid": "7a0110bb-231a-4598-aa1b-0769ea46d28b"
},
"version": "2.1.0",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "christian-kohler.path-intellisense",
"uuid": "a41c1549-4053-44d4-bf30-60fc809b4a86"
},
"version": "2.6.0",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "divyanshuagrawal.competitive-programming-helper",
"uuid": "28579c42-9973-4b79-9a1e-76431ea4bc1f"
},
"version": "5.8.8",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "eamodio.gitlens",
"uuid": "4de763bd-505d-4978-9575-2b7696ecf94e"
},
"version": "11.7.0",
"preRelease": false,
"installed": true,
"state": {
"gitlens:views:welcome:visible": true,
"gitlens:synced:version": "11.7.0"
}
},
{
"identifier": {
"id": "formulahendry.code-runner",
"uuid": "a6a0c5b2-d078-4bf5-a9ee-4e37054414b3"
},
"version": "0.11.6",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "ms-python.python",
"uuid": "f1f59ae4-9318-4f3c-a9b5-81b2eaa5f8a5"
},
"version": "2021.12.1559732655",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "ms-python.vscode-pylance",
"uuid": "364d2426-116a-433a-a5d8-a5098dc3afbd"
},
"version": "2021.12.2",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "ms-toolsai.jupyter",
"uuid": "6c2f1801-1e7f-45b2-9b5c-7782f1e076e8"
},
"version": "2021.11.1001550889",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "ms-toolsai.jupyter-keymap",
"uuid": "9f6dc8db-620c-4844-b8c5-e74914f1be27"
},
"version": "1.0.0",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "ms-toolsai.jupyter-renderers",
"uuid": "b15c72f8-d5fe-421a-a4f7-27ed9f6addbf"
},
"version": "1.0.4",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "ms-vscode-remote.remote-containers",
"uuid": "93ce222b-5f6f-49b7-9ab1-a0463c6238df"
},
"version": "0.209.6",
"preRelease": false,
"installed": true,
"state": {}
},
{
"identifier": {
"id": "ms-vscode.cpptools",
"uuid": "690b692e-e8a9-493f-b802-8089d50ac1b2"
},
"version": "1.7.1",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "ms-vscode.js-debug",
"uuid": "25629058-ddac-4e17-abba-74678e126c5d"
},
"version": "1.62.0",
"preRelease": false
},
{
"identifier": {
"id": "ms-vscode.js-debug-companion",
"uuid": "99cb0b7f-7354-4278-b8da-6cc79972169d"
},
"version": "1.0.15",
"preRelease": false
},
{
"identifier": {
"id": "ms-vscode.references-view",
"uuid": "dc489f46-520d-4556-ae85-1f9eab3c412d"
},
"version": "0.0.81",
"preRelease": false
},
{
"identifier": {
"id": "ms-vscode.vscode-js-profile-table",
"uuid": "7e52b41b-71ad-457b-ab7e-0620f1fc4feb"
},
"version": "0.0.18",
"preRelease": false
},
{
"identifier": {
"id": "pkief.material-icon-theme",
"uuid": "5db78037-f674-459f-a236-db622c427c5b"
},
"version": "4.11.0",
"preRelease": false,
"installed": true,
"state": {
"material-icon-theme.version": "4.11.0"
}
},
{
"identifier": {
"id": "redhat.java",
"uuid": "198a707e-28af-4e84-8610-6e2f628dd12d"
},
"version": "1.2.0",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "shan.code-settings-sync",
"uuid": "e337c67b-55c2-4fef-8949-eb260e7fb7fd"
},
"version": "3.4.3",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "tomoki1207.pdf",
"uuid": "4386e6f6-ec10-4463-9d23-c24278718947"
},
"version": "1.2.0",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "visualstudioexptteam.vscodeintellicode",
"uuid": "876e8f93-74d0-4f4f-91b7-34a09f19f444"
},
"version": "1.2.15",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "vscjava.vscode-java-debug",
"uuid": "61fcd0cf-64d7-4836-8d6b-d55f4fb83281"
},
"version": "0.37.0",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "vscjava.vscode-java-dependency",
"uuid": "7865e561-1c83-410e-9b99-aabada597a7e"
},
"version": "0.18.9",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "vscjava.vscode-java-pack",
"uuid": "96f11e1f-1a46-4592-b084-f025b2c2a81f"
},
"version": "0.20.0",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "vscjava.vscode-java-test",
"uuid": "67c06b0d-1891-42ca-b2a8-113e79bff069"
},
"version": "0.33.1",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "vscjava.vscode-maven",
"uuid": "b0f06c6b-24fb-4d7b-bd79-bc5e2fa17312"
},
"version": "0.34.2",
"preRelease": false,
"installed": true
},
{
"identifier": {
"id": "wyattferguson.jinja2-snippet-kit",
"uuid": "d5097c61-3453-42ac-a2af-840ca519673c"
},
"version": "2.0.0",
"preRelease": false,
"installed": true
}
]
{"version":1,"content":"{\"storage\":{\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark vscode-theme-defaults-themes-dark_plus-json\\\",\\\"label\\\":\\\"Dark+ (default dark)\\\",\\\"settingsId\\\":\\\"Default Dark+\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#D4D4D4\\\"},\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"emphasis\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"strong\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#000080\\\"},\\\"scope\\\":\\\"header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"constant.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":[\\\"constant.numeric\\\",\\\"variable.other.enummember\\\",\\\"keyword.operator.plus.exponent\\\",\\\"keyword.operator.minus.exponent\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#646695\\\"},\\\"scope\\\":\\\"constant.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"entity.name.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"entity.name.tag.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":[\\\"entity.other.attribute-name.class.css\\\",\\\"entity.other.attribute-name.class.mixin.css\\\",\\\"entity.other.attribute-name.id.css\\\",\\\"entity.other.attribute-name.parent-selector.css\\\",\\\"entity.other.attribute-name.pseudo-class.css\\\",\\\"entity.other.attribute-name.pseudo-element.css\\\",\\\"source.css.less entity.other.attribute-name.id\\\",\\\"entity.other.attribute-name.scss\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"invalid\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":\\\"markup.underline\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.bold\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6A9955\\\"},\\\"scope\\\":\\\"punctuation.definition.quote.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"punctuation.definition.list.begin.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"markup.inline.raw\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#808080\\\"},\\\"scope\\\":\\\"punctuation.definition.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"meta.preprocessor\\\",\\\"entity.name.function.preprocessor\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"meta.preprocessor.string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"meta.preprocessor.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"meta.structure.dictionary.key.python\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"meta.diff.header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"storage.type\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"storage.modifier\\\",\\\"keyword.operator.noexcept\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":[\\\"string\\\",\\\"meta.embedded.assembly\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ce9178\\\"},\\\"scope\\\":\\\"string.value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d16969\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.definition.template-expression.begin\\\",\\\"punctuation.definition.template-expression.end\\\",\\\"punctuation.section.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"meta.template.expression\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":[\\\"support.type.vendored.property-name\\\",\\\"support.type.property-name\\\",\\\"variable.css\\\",\\\"variable.scss\\\",\\\"variable.other.less\\\",\\\"source.coffee.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"keyword.control\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":\\\"keyword.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"keyword.operator.new\\\",\\\"keyword.operator.expression\\\",\\\"keyword.operator.cast\\\",\\\"keyword.operator.sizeof\\\",\\\"keyword.operator.alignof\\\",\\\"keyword.operator.typeid\\\",\\\"keyword.operator.alignas\\\",\\\"keyword.operator.instanceof\\\",\\\"keyword.operator.logical.python\\\",\\\"keyword.operator.wordlike\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"keyword.other.unit\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9cdcfe\\\"},\\\"scope\\\":\\\"support.function.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b5cea8\\\"},\\\"scope\\\":\\\"constant.sha.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d4d4d4\\\"},\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"variable.language.wildcard.java\\\",\\\"storage.modifier.package.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"variable.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#DCDCAA\\\"},\\\"scope\\\":[\\\"entity.name.function\\\",\\\"support.function\\\",\\\"support.constant.handlebars\\\",\\\"source.powershell variable.other.member\\\",\\\"entity.name.operator.custom-literal\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#4EC9B0\\\"},\\\"scope\\\":[\\\"meta.return-type\\\",\\\"support.class\\\",\\\"support.type\\\",\\\"entity.name.type\\\",\\\"entity.name.namespace\\\",\\\"entity.other.attribute\\\",\\\"entity.name.scope-resolution\\\",\\\"entity.name.class\\\",\\\"storage.type.numeric.go\\\",\\\"storage.type.byte.go\\\",\\\"storage.type.boolean.go\\\",\\\"storage.type.string.go\\\",\\\"storage.type.uintptr.go\\\",\\\"storage.type.error.go\\\",\\\"storage.type.rune.go\\\",\\\"storage.type.cs\\\",\\\"storage.type.generic.cs\\\",\\\"storage.type.modifier.cs\\\",\\\"storage.type.variable.cs\\\",\\\"storage.type.annotation.java\\\",\\\"storage.type.generic.java\\\",\\\"storage.type.java\\\",\\\"storage.type.object.array.java\\\",\\\"storage.type.primitive.array.java\\\",\\\"storage.type.primitive.java\\\",\\\"storage.type.token.java\\\",\\\"storage.type.groovy\\\",\\\"storage.type.annotation.groovy\\\",\\\"storage.type.parameters.groovy\\\",\\\"storage.type.generic.groovy\\\",\\\"storage.type.object.array.groovy\\\",\\\"storage.type.primitive.array.groovy\\\",\\\"storage.type.primitive.groovy\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#4EC9B0\\\"},\\\"scope\\\":[\\\"meta.type.cast.expr\\\",\\\"meta.type.new.expr\\\",\\\"support.constant.math\\\",\\\"support.constant.dom\\\",\\\"support.constant.json\\\",\\\"entity.other.inherited-class\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#C586C0\\\"},\\\"scope\\\":[\\\"keyword.control\\\",\\\"source.cpp keyword.operator.new\\\",\\\"keyword.operator.delete\\\",\\\"keyword.other.using\\\",\\\"keyword.other.operator\\\",\\\"entity.name.operator\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9CDCFE\\\"},\\\"scope\\\":[\\\"variable\\\",\\\"meta.definition.variable.name\\\",\\\"support.variable\\\",\\\"entity.name.variable\\\",\\\"constant.other.placeholder\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#4FC1FF\\\"},\\\"scope\\\":[\\\"variable.other.constant\\\",\\\"variable.other.enummember\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#9CDCFE\\\"},\\\"scope\\\":[\\\"meta.object-literal.key\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CE9178\\\"},\\\"scope\\\":[\\\"support.constant.property-value\\\",\\\"support.constant.font-name\\\",\\\"support.constant.media-type\\\",\\\"support.constant.media\\\",\\\"constant.other.color.rgb-value\\\",\\\"constant.other.rgb-value\\\",\\\"support.constant.color\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CE9178\\\"},\\\"scope\\\":[\\\"punctuation.definition.group.regexp\\\",\\\"punctuation.definition.group.assertion.regexp\\\",\\\"punctuation.definition.character-class.regexp\\\",\\\"punctuation.character.set.begin.regexp\\\",\\\"punctuation.character.set.end.regexp\\\",\\\"keyword.operator.negation.regexp\\\",\\\"support.other.parenthesis.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d16969\\\"},\\\"scope\\\":[\\\"constant.character.character-class.regexp\\\",\\\"constant.other.character-class.set.regexp\\\",\\\"constant.other.character-class.regexp\\\",\\\"constant.character.set.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#DCDCAA\\\"},\\\"scope\\\":[\\\"keyword.operator.or.regexp\\\",\\\"keyword.control.anchor.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"keyword.operator.quantifier.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#569cd6\\\"},\\\"scope\\\":\\\"constant.character\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d7ba7d\\\"},\\\"scope\\\":\\\"constant.character.escape\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#C8C8C8\\\"},\\\"scope\\\":\\\"entity.name.label\\\"}],\\\"semanticTokenRules\\\":[{\\\"_selector\\\":\\\"newOperator\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"stringLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#ce9178\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"customLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#d4d4d4\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"numberLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#b5cea8\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"newOperator\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#c586c0\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"stringLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#ce9178\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"customLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#dcdcaa\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}},{\\\"_selector\\\":\\\"numberLiteral\\\",\\\"_style\\\":{\\\"_foreground\\\":\\\"#b5cea8\\\",\\\"_bold\\\":null,\\\"_underline\\\":null,\\\"_italic\\\":null}}],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"vscode.theme-defaults\\\",\\\"_extensionIsBuiltin\\\":true,\\\"_extensionName\\\":\\\"theme-defaults\\\",\\\"_extensionPublisher\\\":\\\"vscode\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"editor.background\\\":\\\"#1e1e1e\\\",\\\"editor.foreground\\\":\\\"#d4d4d4\\\",\\\"editor.inactiveSelectionBackground\\\":\\\"#3a3d41\\\",\\\"editorIndentGuide.background\\\":\\\"#404040\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#707070\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#add6ff26\\\",\\\"list.dropBackground\\\":\\\"#383b3d\\\",\\\"activityBarBadge.background\\\":\\\"#007acc\\\",\\\"sideBarTitle.foreground\\\":\\\"#bbbbbb\\\",\\\"input.placeholderForeground\\\":\\\"#a6a6a6\\\",\\\"menu.background\\\":\\\"#252526\\\",\\\"menu.foreground\\\":\\\"#cccccc\\\",\\\"statusBarItem.remoteForeground\\\":\\\"#ffffff\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#16825d\\\",\\\"ports.iconRunningProcessForeground\\\":\\\"#369432\\\",\\\"sideBarSectionHeader.background\\\":\\\"#00000000\\\",\\\"sideBarSectionHeader.border\\\":\\\"#cccccc33\\\",\\\"tab.lastPinnedBorder\\\":\\\"#cccccc33\\\",\\\"list.activeSelectionIconForeground\\\":\\\"#ffffff\\\"},\\\"watch\\\":false}\"},\"commandPalette.mru.cache\":{\"version\":1,\"value\":\"{\\\"usesLRU\\\":true,\\\"entries\\\":[{\\\"key\\\":\\\"workbench.userDataSync.actions.turnOn\\\",\\\"value\\\":1}]}\"},\"commandPalette.mru.counter\":{\"version\":1,\"value\":\"2\"},\"memento/gettingStartedService\":{\"version\":1,\"value\":\"{\\\"commandPaletteTask\\\":{\\\"done\\\":true},\\\"commandPaletteTaskWeb\\\":{\\\"done\\\":true}}\"},\"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}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false}]\"},\"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}]\"},\"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}]\"}}}"}
{"version":1,"content":"{\"storage\":{\"ces/skipSurvey\":{\"version\":1,\"value\":\"1.61.2\"},\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark vscode-theme-monokai-themes-monokai-color-theme-json\\\",\\\"label\\\":\\\"Monokai\\\",\\\"settingsId\\\":\\\"Monokai\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"}},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#88846f\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6DB74\\\"},\\\"scope\\\":\\\"string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":[\\\"punctuation.definition.template-expression\\\",\\\"punctuation.section.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"meta.template.expression\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#AE81FF\\\"},\\\"scope\\\":\\\"constant.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#AE81FF\\\"},\\\"scope\\\":\\\"constant.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#AE81FF\\\"},\\\"scope\\\":\\\"constant.character, constant.other\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":\\\"variable\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#66D9EF\\\"},\\\"scope\\\":\\\"storage.type\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\",\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"entity.name.type, entity.name.class, entity.name.namespace, entity.name.scope-resolution\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic underline\\\",\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"entity.other.inherited-class\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"entity.name.function\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#FD971F\\\"},\\\"scope\\\":\\\"variable.parameter\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":\\\"entity.name.tag\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#66D9EF\\\"},\\\"scope\\\":\\\"support.function\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#66D9EF\\\"},\\\"scope\\\":\\\"support.constant\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#66D9EF\\\"},\\\"scope\\\":\\\"support.type, support.class\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\"},\\\"scope\\\":\\\"support.other.variable\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#F44747\\\"},\\\"scope\\\":\\\"invalid\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F44747\\\"},\\\"scope\\\":\\\"invalid.deprecated\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CFCFC2\\\"},\\\"scope\\\":\\\"meta.structure.dictionary.json string.quoted.double.json\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#75715E\\\"},\\\"scope\\\":\\\"meta.diff, meta.diff.header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6DB74\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#AE81FFA0\\\"},\\\"scope\\\":\\\"constant.numeric.line-number.find-in-files - match\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6DB74\\\"},\\\"scope\\\":\\\"entity.name.filename.find-in-files\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":\\\"markup.quote\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6DB74\\\"},\\\"scope\\\":\\\"markup.list\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#66D9EF\\\"},\\\"scope\\\":\\\"markup.bold, markup.italic\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#FD971F\\\"},\\\"scope\\\":\\\"markup.inline.raw\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A6E22E\\\",\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"markup.heading.setext\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"markup.heading.markdown\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#75715E\\\"},\\\"scope\\\":\\\"markup.quote.markdown\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"markup.bold.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#AE81FF\\\"},\\\"scope\\\":\\\"string.other.link.title.markdown,string.other.link.description.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6DB74\\\"},\\\"scope\\\":\\\"markup.underline.link.markdown,markup.underline.link.image.markdown\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f8f8f2\\\"},\\\"scope\\\":\\\"markup.list.unnumbered.markdown, markup.list.numbered.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":[\\\"punctuation.definition.list.begin.markdown\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"token.info-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#cd9731\\\"},\\\"scope\\\":\\\"token.warn-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"token.error-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b267e6\\\"},\\\"scope\\\":\\\"token.debug-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FD971F\\\"},\\\"scope\\\":\\\"variable.language\\\"}],\\\"semanticTokenRules\\\":[],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"vscode.theme-monokai\\\",\\\"_extensionIsBuiltin\\\":true,\\\"_extensionName\\\":\\\"theme-monokai\\\",\\\"_extensionPublisher\\\":\\\"vscode\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"dropdown.background\\\":\\\"#414339\\\",\\\"list.activeSelectionBackground\\\":\\\"#75715e\\\",\\\"quickInputList.focusBackground\\\":\\\"#414339\\\",\\\"dropdown.listBackground\\\":\\\"#1e1f1c\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#414339\\\",\\\"list.hoverBackground\\\":\\\"#3e3d32\\\",\\\"list.dropBackground\\\":\\\"#414339\\\",\\\"list.highlightForeground\\\":\\\"#f8f8f2\\\",\\\"button.background\\\":\\\"#75715e\\\",\\\"editor.background\\\":\\\"#272822\\\",\\\"editor.foreground\\\":\\\"#f8f8f2\\\",\\\"selection.background\\\":\\\"#878b9180\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#575b6180\\\",\\\"editor.selectionBackground\\\":\\\"#878b9180\\\",\\\"minimap.selectionHighlight\\\":\\\"#878b9180\\\",\\\"editor.wordHighlightBackground\\\":\\\"#4a4a7680\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#6a6a9680\\\",\\\"editor.lineHighlightBackground\\\":\\\"#3e3d32\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#c2c2bf\\\",\\\"editorCursor.foreground\\\":\\\"#f8f8f0\\\",\\\"editorWhitespace.foreground\\\":\\\"#464741\\\",\\\"editorIndentGuide.background\\\":\\\"#464741\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#767771\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#1e1f1c\\\",\\\"editorGroup.dropBackground\\\":\\\"#41433980\\\",\\\"tab.inactiveBackground\\\":\\\"#34352f\\\",\\\"tab.border\\\":\\\"#1e1f1c\\\",\\\"tab.inactiveForeground\\\":\\\"#ccccc7\\\",\\\"tab.lastPinnedBorder\\\":\\\"#414339\\\",\\\"widget.shadow\\\":\\\"#00000098\\\",\\\"progressBar.background\\\":\\\"#75715e\\\",\\\"badge.background\\\":\\\"#75715e\\\",\\\"badge.foreground\\\":\\\"#f8f8f2\\\",\\\"editorLineNumber.foreground\\\":\\\"#90908a\\\",\\\"panelTitle.activeForeground\\\":\\\"#f8f8f2\\\",\\\"panelTitle.activeBorder\\\":\\\"#75715e\\\",\\\"panelTitle.inactiveForeground\\\":\\\"#75715e\\\",\\\"panel.border\\\":\\\"#414339\\\",\\\"settings.focusedRowBackground\\\":\\\"#4143395a\\\",\\\"titleBar.activeBackground\\\":\\\"#1e1f1c\\\",\\\"statusBar.background\\\":\\\"#414339\\\",\\\"statusBar.noFolderBackground\\\":\\\"#414339\\\",\\\"statusBar.debuggingBackground\\\":\\\"#75715e\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#ac6218\\\",\\\"ports.iconRunningProcessForeground\\\":\\\"#ccccc7\\\",\\\"activityBar.background\\\":\\\"#272822\\\",\\\"activityBar.foreground\\\":\\\"#f8f8f2\\\",\\\"sideBar.background\\\":\\\"#1e1f1c\\\",\\\"sideBarSectionHeader.background\\\":\\\"#272822\\\",\\\"menu.background\\\":\\\"#1e1f1c\\\",\\\"menu.foreground\\\":\\\"#cccccc\\\",\\\"pickerGroup.foreground\\\":\\\"#75715e\\\",\\\"input.background\\\":\\\"#414339\\\",\\\"inputOption.activeBorder\\\":\\\"#75715e\\\",\\\"focusBorder\\\":\\\"#75715e\\\",\\\"editorWidget.background\\\":\\\"#1e1f1c\\\",\\\"debugToolBar.background\\\":\\\"#1e1f1c\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#4b661680\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#90274a70\\\",\\\"inputValidation.errorBackground\\\":\\\"#90274a\\\",\\\"inputValidation.errorBorder\\\":\\\"#f92672\\\",\\\"inputValidation.warningBackground\\\":\\\"#848528\\\",\\\"inputValidation.warningBorder\\\":\\\"#e2e22e\\\",\\\"inputValidation.infoBackground\\\":\\\"#546190\\\",\\\"inputValidation.infoBorder\\\":\\\"#819aff\\\",\\\"editorHoverWidget.background\\\":\\\"#414339\\\",\\\"editorHoverWidget.border\\\":\\\"#75715e\\\",\\\"editorSuggestWidget.background\\\":\\\"#272822\\\",\\\"editorSuggestWidget.border\\\":\\\"#75715e\\\",\\\"editorGroup.border\\\":\\\"#34352f\\\",\\\"peekView.border\\\":\\\"#75715e\\\",\\\"peekViewEditor.background\\\":\\\"#272822\\\",\\\"peekViewResult.background\\\":\\\"#1e1f1c\\\",\\\"peekViewTitle.background\\\":\\\"#1e1f1c\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#414339\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#75715e\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#75715e\\\",\\\"terminal.ansiBlack\\\":\\\"#333333\\\",\\\"terminal.ansiRed\\\":\\\"#c4265e\\\",\\\"terminal.ansiGreen\\\":\\\"#86b42b\\\",\\\"terminal.ansiYellow\\\":\\\"#b3b42b\\\",\\\"terminal.ansiBlue\\\":\\\"#6a7ec8\\\",\\\"terminal.ansiMagenta\\\":\\\"#8c6bc8\\\",\\\"terminal.ansiCyan\\\":\\\"#56adbc\\\",\\\"terminal.ansiWhite\\\":\\\"#e3e3dd\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#666666\\\",\\\"terminal.ansiBrightRed\\\":\\\"#f92672\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#a6e22e\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#e2e22e\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#819aff\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#ae81ff\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#66d9ef\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#f8f8f2\\\"},\\\"watch\\\":false}\"},\"commandPalette.mru.cache\":{\"version\":1,\"value\":\"{\\\"usesLRU\\\":true,\\\"entries\\\":[{\\\"key\\\":\\\"workbench.action.webview.reloadWebviewAction\\\",\\\"value\\\":2},{\\\"key\\\":\\\"editor.action.formatDocument.none\\\",\\\"value\\\":6},{\\\"key\\\":\\\"workbench.action.openSettingsJson\\\",\\\"value\\\":9},{\\\"key\\\":\\\"workbench.action.reloadWindow\\\",\\\"value\\\":10}]}\"},\"commandPalette.mru.counter\":{\"version\":1,\"value\":\"11\"},\"cpp.1.editedCount\":{\"version\":1,\"value\":\"7\"},\"cpp.1.editedDate\":{\"version\":1,\"value\":\"Sun Nov 14 2021\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Sun Nov 14 2021\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"9\"},\"expandSuggestionDocs\":{\"version\":1,\"value\":\"true\"},\"fileBasedRecommendations/promptedRecommendations\":{\"version\":1,\"value\":\"{\\\"cpp\\\":[\\\"ms-vscode.cpptools-extension-pack\\\"]}\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Sun Nov 14 2021\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"9\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Sun Nov 14 2021\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"9\"},\"memento/gettingStartedService\":{\"version\":1,\"value\":\"{\\\"installGit\\\":{\\\"done\\\":true},\\\"pickColorTheme\\\":{\\\"done\\\":true},\\\"pickColorThemeWeb\\\":{\\\"done\\\":true},\\\"vscjava.vscode-java-pack#javaWelcome#java.runtime\\\":{\\\"done\\\":true},\\\"commandPaletteTask\\\":{\\\"done\\\":true},\\\"commandPaletteTaskWeb\\\":{\\\"done\\\":true},\\\"ms-vscode.cpptools#cppWelcome#install.cmake.tools\\\":{\\\"done\\\":true}}\"},\"nps/isCandidate\":{\"version\":1,\"value\":\"false\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Sun Nov 14 2021\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"9\"},\"nps/skipVersion\":{\"version\":1,\"value\":\"1.62.2\"},\"refactorPreview.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"refactorPreview\\\",\\\"isHidden\\\":false}]\"},\"scm/input:Git:/home/abhay/Desktop/Coding/scripting/scripts\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/abhay/Desktop/Projects/STS-Hotspot-Detection\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/abhay/mounts/ubuntu/home/abhay/Desktop/projects/STS-Hotspot-Detection\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"terminal.integrated.showTerminalConfigPrompt\":{\"version\":1,\"value\":\"false\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Sun Nov 14 2021\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"9\"},\"views.cachedViewPositions\":{\"version\":1,\"value\":\"[[\\\"sshHosts\\\",{\\\"containerId\\\":\\\"workbench.view.remote\\\"}]]\"},\"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.cph-judge-view-container\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.flutter\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.github-pull-requests\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.extension.github-pull-request\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.cmake__viewContainer\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":13},{\\\"id\\\":\\\"workbench.view.extension.liveshare\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":14},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":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\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"dartDependencyTree\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"javaProjectExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"mavenProjects\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sqlite.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false}]\"},\"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\\\":\\\"workbench.view.extension.jupyter-variables\\\",\\\"name\\\":\\\"Jupyter\\\",\\\"pinned\\\":true,\\\"order\\\":6,\\\"visible\\\":false},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Refactor Preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.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.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}]\"},\"workbench.view.extension.cph-judge-view-container.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"cph.judgeView\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.github-pull-requests.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"github:login\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"pr:github\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"issues:github\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gitlens.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gitlens.views.welcome\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.liveshare.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"liveshare.session\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.contacts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.plannedSessions\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.test.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.testing\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dartTestTree\\\",\\\"isHidden\\\":false}]\"},\"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.view.remote.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"detailsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"devVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"sshHosts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"targetsWsl\\\",\\\"isHidden\\\":false}]\"},\"workbench.welcomePage.walkthroughMetadata\":{\"version\":1,\"value\":\"[[\\\"ms-vscode.cpptools#cppWelcome\\\",{\\\"firstSeen\\\":1635807583581,\\\"stepIDs\\\":[\\\"verify.compiler.mac\\\",\\\"verify.compiler.linux\\\",\\\"verify.compiler.windows\\\",\\\"open.project\\\",\\\"setup.intellisense\\\",\\\"run.project.mac\\\",\\\"run.project.linux\\\",\\\"run.project.windows\\\",\\\"install.cmake.tools\\\",\\\"watch.tutorials\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-python.python#pythonWelcome\\\",{\\\"firstSeen\\\":1635807651486,\\\"stepIDs\\\":[\\\"python.installPythonWin\\\",\\\"python.installPythonMac\\\",\\\"python.installPythonLinux\\\",\\\"python.selectInterpreter\\\",\\\"python.runAndDebug\\\",\\\"python.learnMore\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-python.python#pythonDataScienceWelcome\\\",{\\\"firstSeen\\\":1635807651486,\\\"stepIDs\\\":[\\\"python.installPythonWinDS\\\",\\\"python.installPythonMacDS\\\",\\\"python.installPythonLinuxDS\\\",\\\"python.openFolderMac\\\",\\\"python.openFolder\\\",\\\"python.createNewNotebook\\\",\\\"python.openInteractiveWindow\\\",\\\"python.dataScienceLearnMore\\\"],\\\"manaullyOpened\\\":false}],[\\\"vscjava.vscode-java-pack#javaWelcome\\\",{\\\"firstSeen\\\":1635807668789,\\\"stepIDs\\\":[\\\"java.runtime\\\",\\\"java.extGuide\\\",\\\"java.openProjectFolder\\\",\\\"java.openProjectFolder.mac\\\",\\\"java.showProjectExplorer\\\",\\\"java.showProjectExplorer.notActivated\\\",\\\"java.showDebugView\\\",\\\"java.showTesting\\\",\\\"java.showTesting.notActivated\\\",\\\"java.tutorial\\\",\\\"java.showHelpCenter\\\"],\\\"manaullyOpened\\\":false}]]\"}}}"}
{"version":1,"content":"{\"storage\":{\"ces/skipSurvey\":{\"version\":1,\"value\":\"1.63.0\"},\"colorThemeData\":{\"version\":1,\"value\":\"{\\\"id\\\":\\\"vs-dark vscode-theme-monokai-themes-monokai-color-theme-json\\\",\\\"label\\\":\\\"Monokai\\\",\\\"settingsId\\\":\\\"Monokai\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"}},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"meta.embedded\\\",\\\"source.groovy.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#88846f\\\"},\\\"scope\\\":\\\"comment\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6DB74\\\"},\\\"scope\\\":\\\"string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":[\\\"punctuation.definition.template-expression\\\",\\\"punctuation.section.embedded\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":[\\\"meta.template.expression\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#AE81FF\\\"},\\\"scope\\\":\\\"constant.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#AE81FF\\\"},\\\"scope\\\":\\\"constant.language\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#AE81FF\\\"},\\\"scope\\\":\\\"constant.character, constant.other\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#F8F8F2\\\"},\\\"scope\\\":\\\"variable\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#66D9EF\\\"},\\\"scope\\\":\\\"storage.type\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\",\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"entity.name.type, entity.name.class, entity.name.namespace, entity.name.scope-resolution\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic underline\\\",\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"entity.other.inherited-class\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"entity.name.function\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#FD971F\\\"},\\\"scope\\\":\\\"variable.parameter\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":\\\"entity.name.tag\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#66D9EF\\\"},\\\"scope\\\":\\\"support.function\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#66D9EF\\\"},\\\"scope\\\":\\\"support.constant\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#66D9EF\\\"},\\\"scope\\\":\\\"support.type, support.class\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\"},\\\"scope\\\":\\\"support.other.variable\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#F44747\\\"},\\\"scope\\\":\\\"invalid\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F44747\\\"},\\\"scope\\\":\\\"invalid.deprecated\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#CFCFC2\\\"},\\\"scope\\\":\\\"meta.structure.dictionary.json string.quoted.double.json\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#75715E\\\"},\\\"scope\\\":\\\"meta.diff, meta.diff.header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6DB74\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#AE81FFA0\\\"},\\\"scope\\\":\\\"constant.numeric.line-number.find-in-files - match\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6DB74\\\"},\\\"scope\\\":\\\"entity.name.filename.find-in-files\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#F92672\\\"},\\\"scope\\\":\\\"markup.quote\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6DB74\\\"},\\\"scope\\\":\\\"markup.list\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#66D9EF\\\"},\\\"scope\\\":\\\"markup.bold, markup.italic\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"\\\",\\\"foreground\\\":\\\"#FD971F\\\"},\\\"scope\\\":\\\"markup.inline.raw\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A6E22E\\\",\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"markup.heading.setext\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"markup.heading.markdown\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\",\\\"foreground\\\":\\\"#75715E\\\"},\\\"scope\\\":\\\"markup.quote.markdown\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"markup.bold.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#AE81FF\\\"},\\\"scope\\\":\\\"string.other.link.title.markdown,string.other.link.description.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#E6DB74\\\"},\\\"scope\\\":\\\"markup.underline.link.markdown,markup.underline.link.image.markdown\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f8f8f2\\\"},\\\"scope\\\":\\\"markup.list.unnumbered.markdown, markup.list.numbered.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#A6E22E\\\"},\\\"scope\\\":[\\\"punctuation.definition.list.begin.markdown\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#6796e6\\\"},\\\"scope\\\":\\\"token.info-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#cd9731\\\"},\\\"scope\\\":\\\"token.warn-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#f44747\\\"},\\\"scope\\\":\\\"token.error-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b267e6\\\"},\\\"scope\\\":\\\"token.debug-token\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#FD971F\\\"},\\\"scope\\\":\\\"variable.language\\\"}],\\\"semanticTokenRules\\\":[],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"vscode.theme-monokai\\\",\\\"_extensionIsBuiltin\\\":true,\\\"_extensionName\\\":\\\"theme-monokai\\\",\\\"_extensionPublisher\\\":\\\"vscode\\\"},\\\"themeSemanticHighlighting\\\":true,\\\"colorMap\\\":{\\\"dropdown.background\\\":\\\"#414339\\\",\\\"list.activeSelectionBackground\\\":\\\"#75715e\\\",\\\"quickInputList.focusBackground\\\":\\\"#414339\\\",\\\"dropdown.listBackground\\\":\\\"#1e1f1c\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#414339\\\",\\\"list.hoverBackground\\\":\\\"#3e3d32\\\",\\\"list.dropBackground\\\":\\\"#414339\\\",\\\"list.highlightForeground\\\":\\\"#f8f8f2\\\",\\\"button.background\\\":\\\"#75715e\\\",\\\"editor.background\\\":\\\"#272822\\\",\\\"editor.foreground\\\":\\\"#f8f8f2\\\",\\\"selection.background\\\":\\\"#878b9180\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#575b6180\\\",\\\"editor.selectionBackground\\\":\\\"#878b9180\\\",\\\"minimap.selectionHighlight\\\":\\\"#878b9180\\\",\\\"editor.wordHighlightBackground\\\":\\\"#4a4a7680\\\",\\\"editor.wordHighlightStrongBackground\\\":\\\"#6a6a9680\\\",\\\"editor.lineHighlightBackground\\\":\\\"#3e3d32\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#c2c2bf\\\",\\\"editorCursor.foreground\\\":\\\"#f8f8f0\\\",\\\"editorWhitespace.foreground\\\":\\\"#464741\\\",\\\"editorIndentGuide.background\\\":\\\"#464741\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#767771\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#1e1f1c\\\",\\\"editorGroup.dropBackground\\\":\\\"#41433980\\\",\\\"tab.inactiveBackground\\\":\\\"#34352f\\\",\\\"tab.border\\\":\\\"#1e1f1c\\\",\\\"tab.inactiveForeground\\\":\\\"#ccccc7\\\",\\\"tab.lastPinnedBorder\\\":\\\"#414339\\\",\\\"widget.shadow\\\":\\\"#00000098\\\",\\\"progressBar.background\\\":\\\"#75715e\\\",\\\"badge.background\\\":\\\"#75715e\\\",\\\"badge.foreground\\\":\\\"#f8f8f2\\\",\\\"editorLineNumber.foreground\\\":\\\"#90908a\\\",\\\"panelTitle.activeForeground\\\":\\\"#f8f8f2\\\",\\\"panelTitle.activeBorder\\\":\\\"#75715e\\\",\\\"panelTitle.inactiveForeground\\\":\\\"#75715e\\\",\\\"panel.border\\\":\\\"#414339\\\",\\\"settings.focusedRowBackground\\\":\\\"#4143395a\\\",\\\"titleBar.activeBackground\\\":\\\"#1e1f1c\\\",\\\"statusBar.background\\\":\\\"#414339\\\",\\\"statusBar.noFolderBackground\\\":\\\"#414339\\\",\\\"statusBar.debuggingBackground\\\":\\\"#75715e\\\",\\\"statusBarItem.remoteBackground\\\":\\\"#ac6218\\\",\\\"ports.iconRunningProcessForeground\\\":\\\"#ccccc7\\\",\\\"activityBar.background\\\":\\\"#272822\\\",\\\"activityBar.foreground\\\":\\\"#f8f8f2\\\",\\\"sideBar.background\\\":\\\"#1e1f1c\\\",\\\"sideBarSectionHeader.background\\\":\\\"#272822\\\",\\\"menu.background\\\":\\\"#1e1f1c\\\",\\\"menu.foreground\\\":\\\"#cccccc\\\",\\\"pickerGroup.foreground\\\":\\\"#75715e\\\",\\\"input.background\\\":\\\"#414339\\\",\\\"inputOption.activeBorder\\\":\\\"#75715e\\\",\\\"focusBorder\\\":\\\"#75715e\\\",\\\"editorWidget.background\\\":\\\"#1e1f1c\\\",\\\"debugToolBar.background\\\":\\\"#1e1f1c\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#4b661680\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#90274a70\\\",\\\"inputValidation.errorBackground\\\":\\\"#90274a\\\",\\\"inputValidation.errorBorder\\\":\\\"#f92672\\\",\\\"inputValidation.warningBackground\\\":\\\"#848528\\\",\\\"inputValidation.warningBorder\\\":\\\"#e2e22e\\\",\\\"inputValidation.infoBackground\\\":\\\"#546190\\\",\\\"inputValidation.infoBorder\\\":\\\"#819aff\\\",\\\"editorHoverWidget.background\\\":\\\"#414339\\\",\\\"editorHoverWidget.border\\\":\\\"#75715e\\\",\\\"editorSuggestWidget.background\\\":\\\"#272822\\\",\\\"editorSuggestWidget.border\\\":\\\"#75715e\\\",\\\"editorGroup.border\\\":\\\"#34352f\\\",\\\"peekView.border\\\":\\\"#75715e\\\",\\\"peekViewEditor.background\\\":\\\"#272822\\\",\\\"peekViewResult.background\\\":\\\"#1e1f1c\\\",\\\"peekViewTitle.background\\\":\\\"#1e1f1c\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#414339\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#75715e\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#75715e\\\",\\\"terminal.ansiBlack\\\":\\\"#333333\\\",\\\"terminal.ansiRed\\\":\\\"#c4265e\\\",\\\"terminal.ansiGreen\\\":\\\"#86b42b\\\",\\\"terminal.ansiYellow\\\":\\\"#b3b42b\\\",\\\"terminal.ansiBlue\\\":\\\"#6a7ec8\\\",\\\"terminal.ansiMagenta\\\":\\\"#8c6bc8\\\",\\\"terminal.ansiCyan\\\":\\\"#56adbc\\\",\\\"terminal.ansiWhite\\\":\\\"#e3e3dd\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#666666\\\",\\\"terminal.ansiBrightRed\\\":\\\"#f92672\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#a6e22e\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#e2e22e\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#819aff\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#ae81ff\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#66d9ef\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#f8f8f2\\\"},\\\"watch\\\":false}\"},\"commandPalette.mru.cache\":{\"version\":1,\"value\":\"{\\\"usesLRU\\\":true,\\\"entries\\\":[{\\\"key\\\":\\\"workbench.action.openSettingsJson\\\",\\\"value\\\":4},{\\\"key\\\":\\\"workbench.action.reloadWindow\\\",\\\"value\\\":6}]}\"},\"commandPalette.mru.counter\":{\"version\":1,\"value\":\"7\"},\"cpp.1.editedCount\":{\"version\":1,\"value\":\"1\"},\"cpp.1.editedDate\":{\"version\":1,\"value\":\"Wed Dec 15 2021\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Dec 30 2021\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"6\"},\"expandSuggestionDocs\":{\"version\":1,\"value\":\"true\"},\"extensionTips/promptedExecutableTips\":{\"version\":1,\"value\":\"{\\\"docker\\\":[\\\"ms-azuretools.vscode-docker\\\"]}\"},\"fileBasedRecommendations/promptedRecommendations\":{\"version\":1,\"value\":\"{\\\"cpp\\\":[\\\"ms-vscode.cpptools-extension-pack\\\"]}\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Thu Dec 30 2021\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"6\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Dec 30 2021\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"6\"},\"memento/gettingStartedService\":{\"version\":1,\"value\":\"{\\\"installGit\\\":{\\\"done\\\":true},\\\"pickColorTheme\\\":{\\\"done\\\":true},\\\"pickColorThemeWeb\\\":{\\\"done\\\":true},\\\"commandPaletteTask\\\":{\\\"done\\\":true},\\\"commandPaletteTaskWeb\\\":{\\\"done\\\":true},\\\"ms-python.python#pythonWelcome#python.selectInterpreter\\\":{\\\"done\\\":true},\\\"quickOpen\\\":{\\\"done\\\":true},\\\"quickOpenWeb\\\":{\\\"done\\\":true},\\\"splitview\\\":{\\\"done\\\":true},\\\"debugging\\\":{\\\"done\\\":true},\\\"scmSetup\\\":{\\\"done\\\":true},\\\"tasks\\\":{\\\"done\\\":true},\\\"shortcuts\\\":{\\\"done\\\":true},\\\"scmClone\\\":{\\\"done\\\":true},\\\"scm\\\":{\\\"done\\\":true},\\\"findLanguageExtensions\\\":{\\\"done\\\":true},\\\"settingsSync\\\":{\\\"done\\\":true}}\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Thu Dec 30 2021\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"6\"},\"remote.explorerType\":{\"version\":1,\"value\":\"dev-container,attached-container,exec,k8s-container\"},\"scm/input:Git:/home/abhay/Desktop/Coding/scripting/scripts\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"scm/input:Git:/home/abhay/aur/visual-studio-code-bin\":{\"version\":1,\"value\":\"[\\\"\\\"]\"},\"terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false}]\"},\"terminal.integrated.showTerminalConfigPrompt\":{\"version\":1,\"value\":\"false\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Dec 30 2021\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"6\"},\"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\\\":true,\\\"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.cph-judge-view-container\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.flutter\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":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\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"dartDependencyTree\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"javaProjectExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"mavenProjects\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\"},\"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}]\"},\"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\\\":\\\"workbench.view.extension.jupyter-variables\\\",\\\"name\\\":\\\"Jupyter\\\",\\\"pinned\\\":true,\\\"order\\\":6,\\\"visible\\\":false},{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Refactor Preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.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.statusbar.hidden\":{\"version\":1,\"value\":\"[\\\"status.workspaceTrust.1639243661160\\\"]\"},\"workbench.telemetryOptOutShown\":{\"version\":1,\"value\":\"true\"},\"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}]\"},\"workbench.view.extension.cph-judge-view-container.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"cph.judgeView\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.dockerView.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"dockerContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerImages\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerRegistries\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerNetworks\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"dockerVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.dockerContexts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"vscode-docker.views.help\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.gitlens.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"gitlens.views.welcome\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extension.test.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.testing\\\",\\\"isHidden\\\":false}]\"},\"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.view.remote.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"targetsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"detailsContainers\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"devVolumes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"},\"workbench.welcomePage.hiddenCategories\":{\"version\":1,\"value\":\"[\\\"ms-python.python#pythonWelcome\\\",\\\"Setup\\\",\\\"vscjava.vscode-java-pack#javaWelcome\\\",\\\"Beginner\\\",\\\"Intermediate\\\"]\"},\"workbench.welcomePage.walkthroughMetadata\":{\"version\":1,\"value\":\"[[\\\"ms-vscode.cpptools#cppWelcome\\\",{\\\"firstSeen\\\":1639243706764,\\\"stepIDs\\\":[\\\"verify.compiler.mac\\\",\\\"verify.compiler.linux\\\",\\\"verify.compiler.windows\\\",\\\"open.project\\\",\\\"setup.intellisense\\\",\\\"run.project.mac\\\",\\\"run.project.linux\\\",\\\"run.project.windows\\\",\\\"install.cmake.tools\\\",\\\"watch.tutorials\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-python.python#pythonWelcome\\\",{\\\"firstSeen\\\":1639243769958,\\\"stepIDs\\\":[\\\"python.installPythonWin\\\",\\\"python.installPythonMac\\\",\\\"python.installPythonLinux\\\",\\\"python.selectInterpreter\\\",\\\"python.runAndDebug\\\",\\\"python.learnMore\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-python.python#pythonDataScienceWelcome\\\",{\\\"firstSeen\\\":1639243769958,\\\"stepIDs\\\":[\\\"python.installPythonWinDS\\\",\\\"python.installPythonMacDS\\\",\\\"python.installPythonLinuxDS\\\",\\\"python.openFolderMac\\\",\\\"python.openFolder\\\",\\\"python.createNewNotebook\\\",\\\"python.openInteractiveWindow\\\",\\\"python.dataScienceLearnMore\\\"],\\\"manaullyOpened\\\":false}],[\\\"vscjava.vscode-java-pack#javaWelcome\\\",{\\\"firstSeen\\\":1639243792913,\\\"stepIDs\\\":[\\\"java.runtime\\\",\\\"java.extGuide\\\",\\\"java.openProjectFolder\\\",\\\"java.openProjectFolder.mac\\\",\\\"java.showProjectExplorer\\\",\\\"java.showProjectExplorer.notActivated\\\",\\\"java.showDebugView\\\",\\\"java.showTesting\\\",\\\"java.showTesting.notActivated\\\",\\\"java.tutorial\\\",\\\"java.showHelpCenter\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-azuretools.vscode-docker#dockerStart\\\",{\\\"firstSeen\\\":1640461356718,\\\"stepIDs\\\":[\\\"openFolder\\\",\\\"openFolderMac\\\",\\\"scaffold\\\",\\\"buildImage\\\",\\\"runContainer\\\",\\\"dockerExplorer\\\",\\\"pushImage\\\",\\\"azDeploy\\\",\\\"learn\\\"],\\\"manaullyOpened\\\":false}]]\"}}}"}
{"version":1,"content":"{}"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment