Skip to content

Instantly share code, notes, and snippets.

@queicherius
Last active July 12, 2020 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save queicherius/c55e5d8d94229829beab3c0aede06ecf to your computer and use it in GitHub Desktop.
Save queicherius/c55e5d8d94229829beab3c0aede06ecf to your computer and use it in GitHub Desktop.
VSCode Settings
{"lastUpload":"2020-07-12T20:55:19.484Z","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.0.5"
},
{
"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": "1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd",
"publisherId": "msjsdiag.debugger-for-chrome",
"publisherDisplayName": "msjsdiag"
},
"name": "debugger-for-chrome",
"publisher": "msjsdiag",
"version": "4.12.9"
},
{
"metadata": {
"id": "532533c9-a894-4a58-9eee-bbfbe7c06f71",
"publisherId": "mikestead.dotenv",
"publisherDisplayName": "mikestead"
},
"name": "dotenv",
"publisher": "mikestead",
"version": "1.0.1"
},
{
"metadata": {
"id": "43335a8d-5929-408b-874a-65f08362642c",
"publisherId": "file-icons.file-icons",
"publisherDisplayName": "file-icons"
},
"name": "file-icons",
"publisher": "file-icons",
"version": "1.0.24"
},
{
"metadata": {
"id": "b78d2f2b-8801-40a5-ae88-27d420197d49",
"publisherId": "skyapps.fish-vscode",
"publisherDisplayName": "skyapps"
},
"name": "fish-vscode",
"publisher": "skyapps",
"version": "0.2.1"
},
{
"metadata": {
"id": "607fd052-be03-4363-b657-2bd62b83d28a",
"publisherId": "ms-vscode-remote.remote-ssh",
"publisherDisplayName": "ms-vscode-remote"
},
"name": "remote-ssh",
"publisher": "ms-vscode-remote",
"version": "0.51.0"
},
{
"metadata": {
"id": "bfeaf631-bcff-4908-93ed-fda4ef9a0c5c",
"publisherId": "ms-vscode-remote.remote-ssh-edit",
"publisherDisplayName": "ms-vscode-remote"
},
"name": "remote-ssh-edit",
"publisher": "ms-vscode-remote",
"version": "0.51.0"
},
{
"metadata": {
"id": "5a7017bf-c571-4d77-b902-6e56b16f539a",
"publisherId": "johnpapa.vscode-peacock",
"publisherDisplayName": "johnpapa"
},
"name": "vscode-peacock",
"publisher": "johnpapa",
"version": "3.7.2"
},
{
"metadata": {
"id": "3ac318ba-6083-4fb4-886a-6cb888ebf7ea",
"publisherId": "xr0master.webstorm-intellij-darcula-theme",
"publisherDisplayName": "xr0master"
},
"name": "webstorm-intellij-darcula-theme",
"publisher": "xr0master",
"version": "1.1.1"
}
]
// Place your key bindings in this file to override the defaults
[
{
"key": "shift+alt+c",
"command": "editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+/",
"command": "-editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+w",
"command": "editor.action.smartSelect.expand",
"when": "editorTextFocus"
},
{
"key": "shift+alt+right",
"command": "-editor.action.smartSelect.expand",
"when": "editorTextFocus"
},
{
"key": "ctrl+r",
"command": "editor.action.rename",
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
},
{
"key": "f2",
"command": "-editor.action.rename",
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+h",
"command": "-editor.action.startFindReplaceAction"
},
{
"key": "ctrl+h",
"command": "workbench.action.findInFiles"
},
{
"key": "ctrl+shift+f",
"command": "-workbench.action.findInFiles"
},
{
"key": "alt+enter",
"command": "editor.action.quickFix",
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+.",
"command": "-editor.action.quickFix",
"when": "editorHasCodeActionsProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+s",
"command": "workbench.action.files.saveAll"
},
{
"key": "ctrl+k s",
"command": "-workbench.action.files.saveAll"
},
{
"key": "ctrl+alt+f",
"command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+f",
"command": "-editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+alt+f",
"command": "editor.action.formatDocument.none",
"when": "editorTextFocus && !editorHasDocumentFormattingProvider && !editorHasDocumentFormattingProvider && !editorReadonly"
},
{
"key": "shift+alt+f",
"command": "-editor.action.formatDocument.none",
"when": "editorTextFocus && !editorHasDocumentFormattingProvider && !editorHasDocumentFormattingProvider && !editorReadonly"
},
{
"key": "ctrl+j",
"command": "editor.action.joinLines"
},
{
"key": "ctrl+shift+l",
"command": "cursorColumnSelectRight",
"when": "textInputFocus"
},
{
"key": "ctrl+shift+alt+right",
"command": "-cursorColumnSelectRight",
"when": "textInputFocus"
},
{
"key": "ctrl+shift+-",
"command": "editor.foldAll",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "ctrl+k ctrl+0",
"command": "-editor.foldAll",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "ctrl+shift+=",
"command": "editor.unfoldAll",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "ctrl+k ctrl+j",
"command": "-editor.unfoldAll",
"when": "editorTextFocus && foldingEnabled"
},
{
"key": "ctrl+shift+g",
"command": "git.stageSelectedRanges"
},
{
"key": "ctrl+g",
"command": "git.stage"
}
]
{
// EDITOR -------------------------------------------------------------------
// Font settings. Nice and big, since I have to stare at this all day.
"editor.fontSize": 18,
"editor.lineHeight": 27,
"editor.fontFamily": "Fira Mono",
// Intendation & line endings
"editor.detectIndentation": false,
"editor.tabSize": 2,
"files.eol": "\n",
// Sane type/word-suggestions when typing code
"editor.quickSuggestions": { "other": true, "comments": false, "strings": false },
"editor.acceptSuggestionOnEnter": "on",
"editor.wordBasedSuggestions": true,
"editor.suggestSelection": "first",
// WORKSPACE ----------------------------------------------------------------
// Nicer icons & better lining up with the icons in the explorer view
"workbench.iconTheme": "file-icons",
"workbench.tree.indent": 14,
"workbench.tree.renderIndentGuides": "none",
// Hide unneccessary distractions & make it faster. Keep it clean and simple, code is the focus.
"breadcrumbs.enabled": false,
"editor.minimap.enabled": false,
"editor.parameterHints.enabled": false,
"explorer.openEditors.visible": 0,
"npm.enableScriptExplorer": false,
"terminal.integrated.rendererType": "experimentalWebgl",
// Less confirmation modals
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"git.confirmSync": false,
"git.autofetch": true,
// JAVASCRIPT & TYPESCRIPT --------------------------------------------------
// Yarn > NPM
"npm.packageManager": "yarn",
// Handle JS/TS imports when moving files around
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.preferences.importModuleSpecifier": "relative",
"javascript.preferences.importModuleSpecifier": "relative",
// Handle code formatting automatically
"editor.defaultFormatter": "esbenp.prettier-vscode",
// "editor.codeActionsOnSave": { "source.organizeImports": true },
// "[javascript]": { "editor.formatOnSave": true },
// "[jsx]": { "editor.formatOnSave": true },
// "[typescript]": { "editor.formatOnSave": true },
// "[typescriptreact]": { "editor.formatOnSave": true },
// "[scss]": { "editor.formatOnSave": true },
// "[html]": { "editor.formatOnSave": true },
// "[json]": { "editor.formatOnSave": true },
"[prisma]": {
// "editor.formatOnSave": true,
"editor.defaultFormatter": "Prisma.prisma"
},
// EXTENSIONS ---------------------------------------------------------------
// [Settings Sync] Automatically backup the settings to github
"sync.gist": "c55e5d8d94229829beab3c0aede06ecf",
"sync.quietSync": true,
"sync.removeExtensions": true,
"sync.syncExtensions": true,
"sync.autoDownload": false,
"sync.autoUpload": true,
"sync.forceDownload": false,
// [TODO+] Change the box symbols to be consistent with Markdown
"todo.indentation": " ",
"todo.symbols.box": "[ ]", // Box symbol
"todo.symbols.done": "[X]", // Done symbol
"todo.symbols.cancelled": "[-]", // Cancelled symbol
"todo.tags.names": ["critical", "high", "low", "today", "blocker"],
"todo.colors.dark": {
"tags": {
"background": ["#e54545", "#e59f45", "#e5d145", "#ae81ff", "#e54545"],
"foreground": ["#000000", "#000000", "#000000", "#000000", "#000000"]
}
},
// CLEANUP FROM HERE --------------------------------------------------------
"cSpell.userWords": [
"Bleh",
"CUIDs",
"Cacheable",
"Chainable",
"Ciam",
"Deletable",
"Fingerprinter",
"Healthcheck",
"Heatmap",
"Highcharts",
"Highstock",
"Interactable",
"Kubernetes",
"MMDB",
"Nightmode",
"Overbookable",
"Parens",
"Serializable",
"TODOs",
"abilitytype",
"accesstoken",
"accesstokens",
"anonymize",
"bullmq",
"calponia",
"checkmark",
"craftable",
"dataloader",
"datepicker",
"datetime",
"dbip",
"devoxa",
"downsample",
"esnext",
"execall",
"geolocate",
"geolocation",
"healthchecks",
"hocs",
"ldap",
"lingui",
"mailhog",
"memoizable",
"mjml",
"multiline",
"nestjs",
"overtype",
"pageload",
"pexpire",
"printf",
"pubsub",
"quotemark",
"randomstring",
"returnvalue",
"singleline",
"smtp",
"snipver",
"themself",
"typechecked",
"unflatten",
"uninvite",
"webhook",
"xxxl",
"yeeted"
],
"cSpell.showStatus": false,
"cSpell.ignorePaths": ["**/.vscode-server-insiders/**", "**/.vscode-server/**", "**/node_modules/**", "**/.git/**"],
"gitlens.hovers.currentLine.over": "line",
"gitlens.currentLine.enabled": false,
"gitlens.statusBar.enabled": false,
"quokka.compactMessageOutput": true,
"quokka.showOutputOnStart": false,
"better-comments.tags": [
{
"tag": "todo",
"color": "#A8C023",
"strikethrough": false,
"backgroundColor": "transparent"
}
],
// Customized from here: https://github.com/xr0master/vscode-intellij-darcula-theme/issues/6
"workbench.colorTheme": "Webstorm IntelliJ Darcula Theme",
"workbench.colorCustomizations": {
"[Webstorm IntelliJ Darcula Theme]": {
"activityBar.activeBackground": "#4e5254",
"activityBar.activeBorder": "#3b9eba",
"activityBar.border": "#2e2f2f",
"activityBar.foreground": "#bababa",
"activityBar.inactiveForeground": "#bababa",
"breadcrumb.activeSelectionForeground": "#6696bd",
"breadcrumb.background": "#303234",
"breadcrumb.focusForeground": "#6696bd",
"breadcrumbPicker.background": "#3c3f41ee",
"editor.selectionBackground": "#214283",
"editor.selectionHighlightBackground": "#3441344d",
"editor.wordHighlightBackground": "#3441344d",
"editor.wordHighlightStrongBackground": "#40332B4d",
"editorGroupHeader.noTabsBackground": "#3c3f41",
"editorGroupHeader.tabsBackground": "#3c3f41",
"editorGutter.background": "#313335",
"editorHoverWidget.background": "#3c3f41ee",
"editorHoverWidget.border": "#252525c0",
"editorIndentGuide.activeBackground": "#434343",
"editorIndentGuide.background": "#373737",
"editorLink.activeForeground": "#5398f3",
"editorRuler.foreground": "#373737",
"editorSuggestWidget.background": "#3c3f41ee",
"editorSuggestWidget.border": "#252525C0",
"editorSuggestWidget.foreground": "#b7b7b7",
"editorSuggestWidget.highlightForeground": "#cd75d3",
"editorSuggestWidget.selectedBackground": "#004fa3",
"editorWidget.background": "#3c3f41ee",
"menu.background": "#3c3f41ee",
"menu.selectionBackground": "#004fa3",
"menu.selectionForeground": "#dddddd",
"notificationLink.foreground": "#5398f3",
"panel.border": "#2e2f2f",
"peekViewEditor.matchHighlightBackground": "#ea5c004d",
"peekViewResult.background": "#001f33",
"peekViewResult.selectionBackground": "#00000090",
"scrollbar.shadow": "#00000000",
"scrollbarSlider.activeBackground": "#555758B0",
"scrollbarSlider.background": "#55575870",
"scrollbarSlider.hoverBackground": "#55575890",
"sideBar.border": "#2e2f2f",
"sideBarSectionHeader.background": "#3c3f41",
"sideBarSectionHeader.border": "#2e2f2f",
"statusBar.border": "#2e2f2f",
"statusBar.noFolderBackground": "#3c3f41",
"tab.activeBorder": "#3b9eba",
"tab.border": "#2e2f2f",
"tab.inactiveBackground": "#3c3f41",
"tab.inactiveForeground": "#bababa",
"tab.unfocusedActiveBackground": "#4e5254",
"tab.unfocusedActiveBorder": "#747a80",
"tab.unfocusedActiveForeground": "#bababa",
"tab.unfocusedInactiveForeground": "#bababa",
"terminal.border": "#3c3f41",
"textLink.activeForeground": "#5398f3",
"textLink.foreground": "#5398f3",
"titleBar.activeBackground": "#3c3f41",
"titleBar.activeForeground": "#bababa",
"titleBar.border": "#2e2f2f",
"titleBar.inactiveBackground": "#3c3f41",
"titleBar.inactiveForeground": "#bababa80",
"editorBracketMatch.background": "#3b514d",
"editorBracketMatch.border": "#00000000",
}
},
"editor.tokenColorCustomizations": {
"[Webstorm IntelliJ Darcula Theme]": {
"textMateRules": [
// Disable italics
{
"name": "Line/HTML comments",
"scope": [
"comment.line",
"comment.block",
"comment.block.html",
"variable.other.constant.property",
"variable.other.constant.object.property"
],
"settings": {
"fontStyle": ""
}
},
// Un-bold keywords
{
"name": "Global keywords",
"scope": [
"constant.language",
"keyword.control",
"keyword.operator.expression",
"keyword.operator.new",
"keyword.other.debugger",
"support.type",
"storage.type",
"storage.modifier",
"variable.language.super",
"variable.language.this"
],
"settings": {
"fontStyle": ""
}
},
{
"name": "JSDoc types",
"scope": "entity.name.type.instance.jsdoc",
"settings": {
"foreground": "#a9b7c6"
}
},
{
"name": "JSDoc variables",
"scope": "variable.other.jsdoc",
"settings": {
"foreground": "#90734b"
}
},
{
"name": "JSDoc definition 'at' signs",
"scope": "punctuation.definition.block.tag.jsdoc",
"settings": {
"foreground": "#6a8759"
}
},
{
"name": "JSDoc definition brackets",
"scope": [
"punctuation.definition.bracket.curly.begin.jsdoc",
"punctuation.definition.bracket.curly.end.jsdoc",
"punctuation.definition.optional-value.begin.bracket.square.jsdoc",
"punctuation.definition.optional-value.end.bracket.square.jsdoc"
],
"settings": {
"foreground": "#808080"
}
},
{
"name": "Decorator 'at' signs",
"scope": "punctuation.decorator.ts",
"settings": {
"foreground": "#ffc66d"
}
},
{
"name": "HTML attributes",
"scope": "support.type.object.html-attribute",
"settings": {
"foreground": "#a9b7c6",
"fontStyle": ""
}
},
{
"name": "Doc Blocks",
"scope": "comment.block.documentation",
"settings": {
"foreground": "#629755"
}
},
{
"name": "Basic keyword style (e.g. for dockerfiles)",
"scope": "keyword",
"settings": {
"foreground": "#CC7832"
}
}
]
}
},
"remote.SSH.remotePlatform": {
"192.168.0.7": "linux",
"192.168.56.3": "linux",
"virtualbox": "linux",
"116.202.217.115": "linux",
"gw2efficiency.database-2": "linux",
"gw2efficiency.database-primary": "linux",
"gw2efficiency.database-1": "linux",
"94.130.178.250": "linux",
"gw2efficiency.mongodb": "linux"
},
"editor.columnSelection": false,
"editor.foldingHighlight": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"editor.wordWrapColumn": 100,
"editor.rulers": [
100
],
"files.autoSave": "onWindowChange",
"tslint.exclude": [
"**/node_modules/**"
],
"diffEditor.ignoreTrimWhitespace": false,
"gitlens.codeLens.enabled": false,
"gitlens.hovers.enabled": false,
"workbench.startupEditor": "newUntitledFile",
"remote.SSH.connectTimeout": 30,
"remote.SSH.useLocalServer": false,
"todo.file.name": "TODO,*.todo",
"window.zoomLevel": 0,
"remote.SSH.allowLocalServerDownload": false,
"editor.copyWithSyntaxHighlighting": false
}
{
// Place your snippets for typescript here. Each snippet is defined under a snippet name and has a prefix, body and
// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the
// same ids are connected.
// Example:
// "Print to console": {
// "prefix": "log",
// "body": [
// "console.log('$1');",
// "$2"
// ],
// "description": "Log output to console"
// }
}
{
// Place your snippets for typescriptreact 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.
"React Functional Component": {
"prefix": "rfc",
"body": [
"import React from 'react'",
"",
"export interface $1Props {",
" $0",
"}",
"",
"export const $1 = (props: $1Props) => {",
" return null",
"}",
],
},
"React Functional Component with className": {
"prefix": "rfcc",
"body": [
"import React from 'react'",
"import c from 'classnames'",
"",
"export interface $1Props {",
" /** Any additional CSS classes */",
" className?: string",
"}",
"",
"export const $1 = (pProps: $1Props) => {",
" const props = { className: '', ...pProps }",
"",
" return <div className={c(['cy-$1', props.className])}>$0</div>",
"}",
]
}
}
{"ref":"c5d5dfac-13f0-4c72-9465-bcde5cd3630d","content":"{\"version\":3,\"machineId\":\"63d39b7c-190a-4b08-a885-634f0160a489\",\"content\":\"[{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.bat\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.clojure\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.coffeescript\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.configuration-editing\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.cpp\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.csharp\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.css\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.css-language-features\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.debug-auto-launch\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.debug-server-ready\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.docker\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.emmet\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.extension-editing\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.fsharp\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.git\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.git-ui\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.github-authentication\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.go\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.groovy\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.grunt\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.gulp\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.handlebars\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.hlsl\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.html\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.html-language-features\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.image-preview\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ini\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.jake\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.java\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.javascript\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.json\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.json-language-features\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.less\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.log\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.lua\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.make\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown-language-features\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.merge-conflict\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.js-debug-companion\\\",\\\"uuid\\\":\\\"99cb0b7f-7354-4278-b8da-6cc79972169d\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.node-debug\\\",\\\"uuid\\\":\\\"b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.node-debug2\\\",\\\"uuid\\\":\\\"36d19e17-7569-4841-a001-947eb18602b2\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.references-view\\\",\\\"uuid\\\":\\\"dc489f46-520d-4556-ae85-1f9eab3c412d\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.npm\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.objective-c\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.perl\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.php\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.php-language-features\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.powershell\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.pug\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.python\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.r\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.razor\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ruby\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.rust\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.scss\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.search-result\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.shaderlab\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.shellscript\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.sql\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.swift\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-abyss\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-defaults\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-kimbie-dark\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-monokai\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-monokai-dimmed\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-quietlight\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-red\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.vscode-theme-seti\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-solarized-dark\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-solarized-light\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-tomorrow-night-blue\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.typescript\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.typescript-language-features\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.vb\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.xml\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.yaml\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"aaron-bond.better-comments\\\",\\\"uuid\\\":\\\"7a0110bb-231a-4598-aa1b-0769ea46d28b\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"file-icons.file-icons\\\",\\\"uuid\\\":\\\"43335a8d-5929-408b-874a-65f08362642c\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"mikestead.dotenv\\\",\\\"uuid\\\":\\\"532533c9-a894-4a58-9eee-bbfbe7c06f71\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"msjsdiag.debugger-for-chrome\\\",\\\"uuid\\\":\\\"1ec62ca5-d7f9-4ddb-a882-e8d018c0aefd\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"shan.code-settings-sync\\\",\\\"uuid\\\":\\\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"xr0master.webstorm-intellij-darcula-theme\\\",\\\"uuid\\\":\\\"3ac318ba-6083-4fb4-886a-6cb888ebf7ea\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode-remote.remote-ssh\\\",\\\"uuid\\\":\\\"607fd052-be03-4363-b657-2bd62b83d28a\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode-remote.remote-ssh-edit\\\",\\\"uuid\\\":\\\"bfeaf631-bcff-4908-93ed-fda4ef9a0c5c\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.vscode-js-profile-table\\\",\\\"uuid\\\":\\\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"nicoespeon.abracadabra\\\",\\\"uuid\\\":\\\"0bfc03aa-70fb-4740-82a7-ca1043260d88\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"esbenp.prettier-vscode\\\",\\\"uuid\\\":\\\"96fa4707-6983-4489-b7c5-d5ffdfdcce90\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"fabiospampinato.vscode-todo-plus\\\",\\\"uuid\\\":\\\"0661e679-8a32-433e-baeb-8980f53edb55\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"johnpapa.vscode-peacock\\\",\\\"uuid\\\":\\\"5a7017bf-c571-4d77-b902-6e56b16f539a\\\"},\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.microsoft-authentication\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.github\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.js-debug\\\",\\\"uuid\\\":\\\"25629058-ddac-4e17-abba-74678e126c5d\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.github-browser\\\"}},{\\\"identifier\\\":{\\\"id\\\":\\\"skyapps.fish-vscode\\\",\\\"uuid\\\":\\\"b78d2f2b-8801-40a5-ae88-27d420197d49\\\"},\\\"installed\\\":true}]\"}","skippedExtensions":[]}
{"version":1,"content":"{\"storage\":{\"workbench.panel.repl.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"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.terminal.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.panel.terminal\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.debug.state.hidden\":{\"version\":1,\"value\":\"[{\\\"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\\\":\\\"workbench.debug.welcome\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.extensions.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"extensions.popularExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.recommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.listView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.ssh-remote+192.168.0.7.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.ssh-remote+virtualbox.default\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.enabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.workspaceRecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.otherrecommendedList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.disabledExtensionList2\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInBasicsExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.builtInThemesExtensionsList\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"extensions.vscode-local.outdated\\\",\\\"isHidden\\\":false}]\"},\"workbench.explorer.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"treeLocalHistoryExplorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory:explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gistpad.gists.explorer\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.remote.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"sshHosts\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.helpPanel\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"~remote.forwardedPorts\\\",\\\"isHidden\\\":false}]\"},\"workbench.scm.views.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"scm.mainPane\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1496084773\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-854281153\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1974711569\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1781470570\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:249683251\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1680381786\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:410725015\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-2140576893\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:950027744\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1839011513\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1627785790\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1349892092\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:2108002394\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1051597589\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:2025084117\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:535109150\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:390785733\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:1936726567\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-1160505746\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:-713009471\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"scm:repository:2137944417\\\",\\\"isHidden\\\":false}]\"},\"workbench.view.search.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false}]\"},\"workbench.panel.pinnedPanels\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"refactorPreview\\\",\\\"name\\\":\\\"Refactor Preview\\\",\\\"pinned\\\":true,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"name\\\":\\\"Debug Console\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true},{\\\"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.terminal\\\",\\\"name\\\":\\\"Terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3,\\\"visible\\\":true}]\"},\"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\\\":2},{\\\"id\\\":\\\"workbench.view.remote\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extensions\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"workbench.view.extension.references-view\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":7},{\\\"id\\\":\\\"workbench.view.extension.gistpad\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.todo\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.github-pull-requests\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.extension.liveshare\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.localHistory\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":14},{\\\"id\\\":\\\"workbench.view.extension.wallaby\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":13},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\"},\"http.linkProtectionTrustedDomains\":{\"version\":1,\"value\":\"[\\\"*.github.com\\\",\\\"*.docker.com\\\"]\"},\"workbench.view.sync.state.hidden\":{\"version\":1,\"value\":\"[{\\\"id\\\":\\\"workbench.views.sync.remoteBackupView\\\",\\\"isHidden\\\":false}]\"},\"nps/sessionCount\":{\"version\":1,\"value\":\"13\"},\"nps/lastSessionDate\":{\"version\":1,\"value\":\"Wed Apr 01 2020\"},\"nps/skipVersion\":{\"version\":1,\"value\":\"1.44.0-insider\"},\"nps/isCandidate\":{\"version\":1,\"value\":\"false\"},\"cpp.1.sessionCount\":{\"version\":1,\"value\":\"24\"},\"cpp.1.lastSessionDate\":{\"version\":1,\"value\":\"Wed May 06 2020\"},\"java.2.sessionCount\":{\"version\":1,\"value\":\"24\"},\"java.2.lastSessionDate\":{\"version\":1,\"value\":\"Wed May 06 2020\"},\"javascript.1.sessionCount\":{\"version\":1,\"value\":\"14\"},\"javascript.1.lastSessionDate\":{\"version\":1,\"value\":\"Thu Apr 02 2020\"},\"javascript.1.skipVersion\":{\"version\":1,\"value\":\"1.44.0-insider\"},\"javascript.1.isCandidate\":{\"version\":1,\"value\":\"false\"},\"javascript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"javascript.1.editedDate\":{\"version\":1,\"value\":\"Wed Apr 01 2020\"},\"typescript.1.sessionCount\":{\"version\":1,\"value\":\"24\"},\"typescript.1.lastSessionDate\":{\"version\":1,\"value\":\"Wed May 06 2020\"},\"typescript.1.isCandidate\":{\"version\":1,\"value\":\"true\"},\"typescript.1.editedCount\":{\"version\":1,\"value\":\"10\"},\"typescript.1.editedDate\":{\"version\":1,\"value\":\"Fri Apr 03 2020\"},\"extensionsAssistant/importantRecommendationsIgnore\":{\"version\":1,\"value\":\"[\\\"ms-vscode-remote.remote-wsl\\\"]\"},\"commandPalette.mru.cache\":{\"version\":1,\"value\":\"{\\\"usesLRU\\\":true,\\\"entries\\\":[{\\\"key\\\":\\\"workbench.userData.actions.syncSettings\\\",\\\"value\\\":1},{\\\"key\\\":\\\"workbench.userData.actions.syncStart\\\",\\\"value\\\":2},{\\\"key\\\":\\\"extension.updateSettings\\\",\\\"value\\\":3},{\\\"key\\\":\\\"typescript.restartTsServer\\\",\\\"value\\\":5},{\\\"key\\\":\\\"markdown.extension.printToHtml\\\",\\\"value\\\":6},{\\\"key\\\":\\\"workbench.extensions.action.installExtensions\\\",\\\"value\\\":7},{\\\"key\\\":\\\"workbench.extensions.action.showRecommendedKeymapExtensions\\\",\\\"value\\\":9},{\\\"key\\\":\\\"workbench.action.openSnippets\\\",\\\"value\\\":10},{\\\"key\\\":\\\"extension.changeCase.constant\\\",\\\"value\\\":16},{\\\"key\\\":\\\"extension.changeCase.pascal\\\",\\\"value\\\":17},{\\\"key\\\":\\\"extension.changeCase.camel\\\",\\\"value\\\":18},{\\\"key\\\":\\\"editor.action.refactor\\\",\\\"value\\\":19},{\\\"key\\\":\\\"workbench.action.selectTheme\\\",\\\"value\\\":20},{\\\"key\\\":\\\"git.commit\\\",\\\"value\\\":29},{\\\"key\\\":\\\"workbench.action.selectIconTheme\\\",\\\"value\\\":30},{\\\"key\\\":\\\"editor.action.inspectTMScopes\\\",\\\"value\\\":36},{\\\"key\\\":\\\"editor.action.formatSelection\\\",\\\"value\\\":47},{\\\"key\\\":\\\"editor.action.formatSelection.multiple\\\",\\\"value\\\":48},{\\\"key\\\":\\\"editor.action.formatDocument\\\",\\\"value\\\":49},{\\\"key\\\":\\\"quokka.runOnSave\\\",\\\"value\\\":51},{\\\"key\\\":\\\"quokka.createFile\\\",\\\"value\\\":52},{\\\"key\\\":\\\"editor.action.formatDocument.multiple\\\",\\\"value\\\":56},{\\\"key\\\":\\\"todo.openEmbedded\\\",\\\"value\\\":58},{\\\"key\\\":\\\"todo.archive\\\",\\\"value\\\":59},{\\\"key\\\":\\\"workbench.action.debug.configure\\\",\\\"value\\\":61},{\\\"key\\\":\\\"remote.tunnel.forwardCommandPalette\\\",\\\"value\\\":62},{\\\"key\\\":\\\"editor.action.fixAll\\\",\\\"value\\\":63},{\\\"key\\\":\\\"editor.action.organizeImports\\\",\\\"value\\\":64},{\\\"key\\\":\\\"todo.open\\\",\\\"value\\\":65},{\\\"key\\\":\\\"workbench.actions.showSyncRemoteBackupView\\\",\\\"value\\\":67},{\\\"key\\\":\\\"extension.downloadSettings\\\",\\\"value\\\":68}]}\"},\"commandPalette.mru.counter\":{\"version\":1,\"value\":\"69\"}}}"}
{"ref":"8180dd64-6dc8-4558-abe2-b7adb6cc24bb","content":"{\"version\":1,\"machineId\":\"63d39b7c-190a-4b08-a885-634f0160a489\",\"content\":\"{\\\"storage\\\":{\\\"workbench.panel.pinnedPanels\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"refactorPreview\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Refactor Preview\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":0,\\\\\\\"visible\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.repl\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Debug Console\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":2,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"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.terminal\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Terminal\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":3,\\\\\\\"visible\\\\\\\":true}]\\\"},\\\"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\\\\\\\":2},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.remote\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":4},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extensions\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":4},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.references-view\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":7},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.gistpad\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":7},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.gitlens\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":8},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.todo\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":8},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.github-pull-requests\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":10},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.dockerView\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":11},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.liveshare\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":10},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.localHistory\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":12},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.wallaby\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":11},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.sync\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":15}]\\\"},\\\"workbench.explorer.views.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.fileView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"outline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"timeline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.openEditorsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"npm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"treeLocalHistoryExplorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.fileHistory:explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gistpad.gists.explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.emptyView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.repositories:explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.lineHistory:explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.compare:explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.search:explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"liveshare.session.explorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.scm.views.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"scm.mainPane\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1496084773\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-854281153\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1974711569\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1781470570\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:249683251\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1680381786\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:410725015\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-2140576893\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:950027744\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1839011513\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1627785790\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1349892092\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:2108002394\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1051597589\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:2025084117\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:535109150\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:390785733\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1936726567\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1160505746\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-713009471\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:2137944417\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.repositories:scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.fileHistory:scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.lineHistory:scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.compare:scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.search:scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:446025189\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1825694088\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1631048109\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-260012959\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-954407187\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1313957229\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1417297148\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-772903359\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1597539824\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1724973262\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-2088958186\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:669067426\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:123387386\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1167365613\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:390555753\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:302938740\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1378561749\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1467182199\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1081832254\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-61123858\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1573066172\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1880693395\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:760717211\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-427072146\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:228204730\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:553378593\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-2033211386\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:495452749\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1258221835\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1401659567\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-219407339\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:419004701\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:848809447\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-922839372\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1184187925\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:2133201985\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-964030328\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:571364277\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-186455865\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1576922936\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:527808359\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1189208815\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-613042080\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-415844407\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-1814214801\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:-553831533\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1906225555\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"scm:repository:1849375159\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extensions.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.popularExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.enabledExtensionList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.disabledExtensionList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.recommendedList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.listView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.vscode-local.default\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.ssh-remote+192.168.0.7.default\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.ssh-remote+virtualbox.default\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.enabledExtensionList2\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.workspaceRecommendedList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.otherrecommendedList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.disabledExtensionList2\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.builtInExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.builtInBasicsExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.builtInThemesExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.vscode-local.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.vscode-local.outdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.ssh-remote+virtualbox.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.ssh-remote+virtualbox.outdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.local.default\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.remote.default\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.local.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.local.outdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.remote.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.remote.outdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"hasNotifiedOfSettingsAutosave\\\":{\\\"version\\\":1,\\\"value\\\":\\\"true\\\"},\\\"workbench.panel.output.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.output\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.search.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.search\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.gitlens.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.repositories:gitlens\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.fileHistory:gitlens\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.lineHistory:gitlens\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.compare:gitlens\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"gitlens.views.search:gitlens\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"commandPalette.mru.cache\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"usesLRU\\\\\\\":true,\\\\\\\"entries\\\\\\\":[{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.userData.actions.syncSettings\\\\\\\",\\\\\\\"value\\\\\\\":1},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.userData.actions.syncStart\\\\\\\",\\\\\\\"value\\\\\\\":2},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.updateSettings\\\\\\\",\\\\\\\"value\\\\\\\":3},{\\\\\\\"key\\\\\\\":\\\\\\\"markdown.extension.printToHtml\\\\\\\",\\\\\\\"value\\\\\\\":6},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.extensions.action.installExtensions\\\\\\\",\\\\\\\"value\\\\\\\":7},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.extensions.action.showRecommendedKeymapExtensions\\\\\\\",\\\\\\\"value\\\\\\\":9},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.openSnippets\\\\\\\",\\\\\\\"value\\\\\\\":10},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.refactor\\\\\\\",\\\\\\\"value\\\\\\\":19},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.selectTheme\\\\\\\",\\\\\\\"value\\\\\\\":20},{\\\\\\\"key\\\\\\\":\\\\\\\"git.commit\\\\\\\",\\\\\\\"value\\\\\\\":29},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.selectIconTheme\\\\\\\",\\\\\\\"value\\\\\\\":30},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.inspectTMScopes\\\\\\\",\\\\\\\"value\\\\\\\":36},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.formatSelection\\\\\\\",\\\\\\\"value\\\\\\\":47},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.formatSelection.multiple\\\\\\\",\\\\\\\"value\\\\\\\":48},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.formatDocument\\\\\\\",\\\\\\\"value\\\\\\\":49},{\\\\\\\"key\\\\\\\":\\\\\\\"quokka.runOnSave\\\\\\\",\\\\\\\"value\\\\\\\":51},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.formatDocument.multiple\\\\\\\",\\\\\\\"value\\\\\\\":56},{\\\\\\\"key\\\\\\\":\\\\\\\"todo.openEmbedded\\\\\\\",\\\\\\\"value\\\\\\\":58},{\\\\\\\"key\\\\\\\":\\\\\\\"todo.archive\\\\\\\",\\\\\\\"value\\\\\\\":59},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.debug.configure\\\\\\\",\\\\\\\"value\\\\\\\":61},{\\\\\\\"key\\\\\\\":\\\\\\\"remote.tunnel.forwardCommandPalette\\\\\\\",\\\\\\\"value\\\\\\\":62},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.fixAll\\\\\\\",\\\\\\\"value\\\\\\\":63},{\\\\\\\"key\\\\\\\":\\\\\\\"todo.open\\\\\\\",\\\\\\\"value\\\\\\\":65},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.actions.showSyncRemoteBackupView\\\\\\\",\\\\\\\"value\\\\\\\":67},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.changeCase.camel\\\\\\\",\\\\\\\"value\\\\\\\":85},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.changeCase.snake\\\\\\\",\\\\\\\"value\\\\\\\":129},{\\\\\\\"key\\\\\\\":\\\\\\\"quokka.createFile\\\\\\\",\\\\\\\"value\\\\\\\":130},{\\\\\\\"key\\\\\\\":\\\\\\\"sortLines.sortLinesCaseInsensitiveUnique\\\\\\\",\\\\\\\"value\\\\\\\":132},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.debug.action.addLogPoint\\\\\\\",\\\\\\\"value\\\\\\\":140},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.changeCase.upper\\\\\\\",\\\\\\\"value\\\\\\\":144},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.changeCase.pascal\\\\\\\",\\\\\\\"value\\\\\\\":158},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.changeCase.constant\\\\\\\",\\\\\\\"value\\\\\\\":161},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.changeCase.kebab\\\\\\\",\\\\\\\"value\\\\\\\":164},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.organizeImports\\\\\\\",\\\\\\\"value\\\\\\\":165},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.changeCase.lower\\\\\\\",\\\\\\\"value\\\\\\\":168},{\\\\\\\"key\\\\\\\":\\\\\\\"todo.toggleStart\\\\\\\",\\\\\\\"value\\\\\\\":185},{\\\\\\\"key\\\\\\\":\\\\\\\"sortLines.sortLinesUnique\\\\\\\",\\\\\\\"value\\\\\\\":188},{\\\\\\\"key\\\\\\\":\\\\\\\"typescript.restartTsServer\\\\\\\",\\\\\\\"value\\\\\\\":193},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.toggleWordWrap\\\\\\\",\\\\\\\"value\\\\\\\":194}]}\\\"},\\\"commandPalette.mru.counter\\\":{\\\"version\\\":1,\\\"value\\\":\\\"195\\\"},\\\"workbench.panel.markers.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.markers.view\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.todo.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"todo.views.1files\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"todo.views.2embedded\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.debug.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"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\\\\\\\":\\\\\\\"workbench.debug.welcome\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"jsBrowserBreakpoints\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"extensionsAssistant/importantRecommendationsIgnore\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"ms-vscode-remote.remote-wsl\\\\\\\"]\\\"},\\\"workbench.panel.terminal.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.terminal\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.sync.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.sync.remoteBackupView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.panel.repl.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.repl.view\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.remote.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"sshHosts\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"~remote.helpPanel\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"~remote.forwardedPorts\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"http.linkProtectionTrustedDomains\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"*.github.com\\\\\\\",\\\\\\\"*.docker.com\\\\\\\",\\\\\\\"https://bit.ly\\\\\\\"]\\\"},\\\"nps/sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"13\\\"},\\\"nps/lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Wed Apr 01 2020\\\"},\\\"nps/skipVersion\\\":{\\\"version\\\":1,\\\"value\\\":\\\"1.44.0-insider\\\"},\\\"nps/isCandidate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"false\\\"},\\\"cpp.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"90\\\"},\\\"cpp.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Sun Jul 12 2020\\\"},\\\"java.2.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"90\\\"},\\\"java.2.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Sun Jul 12 2020\\\"},\\\"javascript.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"14\\\"},\\\"javascript.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Thu Apr 02 2020\\\"},\\\"javascript.1.skipVersion\\\":{\\\"version\\\":1,\\\"value\\\":\\\"1.44.0-insider\\\"},\\\"javascript.1.isCandidate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"false\\\"},\\\"javascript.1.editedCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"10\\\"},\\\"javascript.1.editedDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Wed Apr 01 2020\\\"},\\\"typescript.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"25\\\"},\\\"typescript.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Thu May 07 2020\\\"},\\\"typescript.1.isCandidate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"false\\\"},\\\"typescript.1.editedCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"10\\\"},\\\"typescript.1.editedDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Fri Apr 03 2020\\\"},\\\"workbench.view.extension.liveshare.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"liveshare.session\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"liveshare.contacts\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"liveshare.help\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"liveshare.plannedSessions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"typescript.1.skipVersion\\\":{\\\"version\\\":1,\\\"value\\\":\\\"1.45.0-insider\\\"},\\\"workbench.view.extension.wallaby.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"quokkaValueExplorer\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"}}}\"}","skippedStorageKeys":["hasNotifiedOfSettingsAutosave"]}
{"ref":"19f4fda8-db28-4ab7-948c-7d3f2f61f38d","content":"{\"version\":1,\"content\":\"{\\\"windows\\\":\\\"// Place your key bindings in this file to override the defaults\\\\n[\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+alt+c\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.commentLine\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+/\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-editor.action.commentLine\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+w\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.smartSelect.expand\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+alt+right\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-editor.action.smartSelect.expand\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+r\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.rename\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorHasRenameProvider && editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"f2\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-editor.action.rename\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorHasRenameProvider && editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+h\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-editor.action.startFindReplaceAction\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+h\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.findInFiles\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+f\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-workbench.action.findInFiles\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+enter\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.quickFix\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorHasCodeActionsProvider && editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+.\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-editor.action.quickFix\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorHasCodeActionsProvider && editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+s\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"workbench.action.files.saveAll\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+k s\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-workbench.action.files.saveAll\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+alt+f\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.formatDocument\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+alt+f\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-editor.action.formatDocument\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorHasDocumentFormattingProvider && editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+alt+f\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.formatDocument.none\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorHasDocumentFormattingProvider && !editorHasDocumentFormattingProvider && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"shift+alt+f\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-editor.action.formatDocument.none\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && !editorHasDocumentFormattingProvider && !editorHasDocumentFormattingProvider && !editorReadonly\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+j\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.joinLines\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+l\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"cursorColumnSelectRight\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"textInputFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+alt+right\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-cursorColumnSelectRight\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"textInputFocus\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+-\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.foldAll\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && foldingEnabled\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+k ctrl+0\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-editor.foldAll\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && foldingEnabled\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+=\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.unfoldAll\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && foldingEnabled\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+k ctrl+j\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"-editor.unfoldAll\\\\\\\",\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && foldingEnabled\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+shift+g\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"git.stageSelectedRanges\\\\\\\"\\\\n },\\\\n {\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+g\\\\\\\",\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"git.stage\\\\\\\"\\\\n }\\\\n]\\\"}\"}"}
{"ref":"9764fdc5-6379-488e-8767-41904d0d50a5","content":"{\"version\":1,\"machineId\":\"63d39b7c-190a-4b08-a885-634f0160a489\",\"content\":\"{\\\"settings\\\":\\\"{\\\\n // EDITOR -------------------------------------------------------------------\\\\n\\\\n // Font settings. Nice and big, since I have to stare at this all day.\\\\n \\\\\\\"editor.fontSize\\\\\\\": 18,\\\\n \\\\\\\"editor.lineHeight\\\\\\\": 27,\\\\n \\\\\\\"editor.fontFamily\\\\\\\": \\\\\\\"Fira Mono\\\\\\\",\\\\n\\\\n // Intendation & line endings\\\\n \\\\\\\"editor.detectIndentation\\\\\\\": false,\\\\n \\\\\\\"editor.tabSize\\\\\\\": 2,\\\\n \\\\\\\"files.eol\\\\\\\": \\\\\\\"\\\\\\\\n\\\\\\\",\\\\n\\\\n // Sane type/word-suggestions when typing code\\\\n \\\\\\\"editor.quickSuggestions\\\\\\\": { \\\\\\\"other\\\\\\\": true, \\\\\\\"comments\\\\\\\": false, \\\\\\\"strings\\\\\\\": false },\\\\n \\\\\\\"editor.acceptSuggestionOnEnter\\\\\\\": \\\\\\\"on\\\\\\\",\\\\n \\\\\\\"editor.wordBasedSuggestions\\\\\\\": true,\\\\n \\\\\\\"editor.suggestSelection\\\\\\\": \\\\\\\"first\\\\\\\",\\\\n\\\\n // WORKSPACE ----------------------------------------------------------------\\\\n\\\\n // Nicer icons & better lining up with the icons in the explorer view\\\\n \\\\\\\"workbench.iconTheme\\\\\\\": \\\\\\\"file-icons\\\\\\\",\\\\n \\\\\\\"workbench.tree.indent\\\\\\\": 14,\\\\n \\\\\\\"workbench.tree.renderIndentGuides\\\\\\\": \\\\\\\"none\\\\\\\",\\\\n\\\\n // Hide unneccessary distractions & make it faster. Keep it clean and simple, code is the focus.\\\\n \\\\\\\"breadcrumbs.enabled\\\\\\\": false,\\\\n \\\\\\\"editor.minimap.enabled\\\\\\\": false,\\\\n \\\\\\\"editor.parameterHints.enabled\\\\\\\": false,\\\\n \\\\\\\"explorer.openEditors.visible\\\\\\\": 0,\\\\n \\\\\\\"npm.enableScriptExplorer\\\\\\\": false,\\\\n \\\\\\\"terminal.integrated.rendererType\\\\\\\": \\\\\\\"experimentalWebgl\\\\\\\",\\\\n\\\\n // Less confirmation modals\\\\n \\\\\\\"explorer.confirmDelete\\\\\\\": false,\\\\n \\\\\\\"explorer.confirmDragAndDrop\\\\\\\": false,\\\\n \\\\\\\"git.confirmSync\\\\\\\": false,\\\\n \\\\\\\"git.autofetch\\\\\\\": true,\\\\n\\\\n // JAVASCRIPT & TYPESCRIPT --------------------------------------------------\\\\n\\\\n // Yarn > NPM\\\\n \\\\\\\"npm.packageManager\\\\\\\": \\\\\\\"yarn\\\\\\\",\\\\n\\\\n // Handle JS/TS imports when moving files around\\\\n \\\\\\\"typescript.updateImportsOnFileMove.enabled\\\\\\\": \\\\\\\"always\\\\\\\",\\\\n \\\\\\\"javascript.updateImportsOnFileMove.enabled\\\\\\\": \\\\\\\"always\\\\\\\",\\\\n \\\\\\\"typescript.preferences.importModuleSpecifier\\\\\\\": \\\\\\\"relative\\\\\\\",\\\\n \\\\\\\"javascript.preferences.importModuleSpecifier\\\\\\\": \\\\\\\"relative\\\\\\\",\\\\n\\\\n // Handle code formatting automatically\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\",\\\\n // \\\\\\\"editor.codeActionsOnSave\\\\\\\": { \\\\\\\"source.organizeImports\\\\\\\": true },\\\\n // \\\\\\\"[javascript]\\\\\\\": { \\\\\\\"editor.formatOnSave\\\\\\\": true },\\\\t\\\\n // \\\\\\\"[jsx]\\\\\\\": { \\\\\\\"editor.formatOnSave\\\\\\\": true },\\\\t\\\\n // \\\\\\\"[typescript]\\\\\\\": { \\\\\\\"editor.formatOnSave\\\\\\\": true },\\\\t\\\\n // \\\\\\\"[typescriptreact]\\\\\\\": { \\\\\\\"editor.formatOnSave\\\\\\\": true },\\\\t\\\\n // \\\\\\\"[scss]\\\\\\\": { \\\\\\\"editor.formatOnSave\\\\\\\": true },\\\\t\\\\n // \\\\\\\"[html]\\\\\\\": { \\\\\\\"editor.formatOnSave\\\\\\\": true },\\\\t\\\\n // \\\\\\\"[json]\\\\\\\": { \\\\\\\"editor.formatOnSave\\\\\\\": true },\\\\t\\\\n \\\\\\\"[prisma]\\\\\\\": { \\\\n // \\\\\\\"editor.formatOnSave\\\\\\\": true,\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"Prisma.prisma\\\\\\\"\\\\n },\\\\t\\\\n\\\\n // EXTENSIONS ---------------------------------------------------------------\\\\n\\\\n // [Settings Sync] Automatically backup the settings to github\\\\n \\\\\\\"sync.gist\\\\\\\": \\\\\\\"c55e5d8d94229829beab3c0aede06ecf\\\\\\\",\\\\n \\\\\\\"sync.quietSync\\\\\\\": true,\\\\n \\\\\\\"sync.removeExtensions\\\\\\\": true,\\\\n \\\\\\\"sync.syncExtensions\\\\\\\": true,\\\\n \\\\\\\"sync.autoDownload\\\\\\\": false,\\\\n \\\\\\\"sync.autoUpload\\\\\\\": true,\\\\n \\\\\\\"sync.forceDownload\\\\\\\": false,\\\\n\\\\n // [TODO+] Change the box symbols to be consistent with Markdown\\\\n \\\\\\\"todo.indentation\\\\\\\": \\\\\\\" \\\\\\\",\\\\n \\\\\\\"todo.symbols.box\\\\\\\": \\\\\\\"[ ]\\\\\\\", // Box symbol\\\\n \\\\\\\"todo.symbols.done\\\\\\\": \\\\\\\"[X]\\\\\\\", // Done symbol\\\\n \\\\\\\"todo.symbols.cancelled\\\\\\\": \\\\\\\"[-]\\\\\\\", // Cancelled symbol\\\\n \\\\\\\"todo.tags.names\\\\\\\": [\\\\\\\"critical\\\\\\\", \\\\\\\"high\\\\\\\", \\\\\\\"low\\\\\\\", \\\\\\\"today\\\\\\\", \\\\\\\"blocker\\\\\\\"],\\\\n \\\\\\\"todo.colors.dark\\\\\\\": {\\\\n \\\\\\\"tags\\\\\\\": {\\\\n \\\\\\\"background\\\\\\\": [\\\\\\\"#e54545\\\\\\\", \\\\\\\"#e59f45\\\\\\\", \\\\\\\"#e5d145\\\\\\\", \\\\\\\"#ae81ff\\\\\\\", \\\\\\\"#e54545\\\\\\\"],\\\\n \\\\\\\"foreground\\\\\\\": [\\\\\\\"#000000\\\\\\\", \\\\\\\"#000000\\\\\\\", \\\\\\\"#000000\\\\\\\", \\\\\\\"#000000\\\\\\\", \\\\\\\"#000000\\\\\\\"]\\\\n }\\\\n },\\\\n\\\\n // CLEANUP FROM HERE --------------------------------------------------------\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\n\\\\n\\\\n \\\\n \\\\n \\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\\\\"cSpell.userWords\\\\\\\": [\\\\n \\\\\\\"Bleh\\\\\\\",\\\\n \\\\\\\"CUIDs\\\\\\\",\\\\n \\\\\\\"Cacheable\\\\\\\",\\\\n \\\\\\\"Chainable\\\\\\\",\\\\n \\\\\\\"Ciam\\\\\\\",\\\\n \\\\\\\"Deletable\\\\\\\",\\\\n \\\\\\\"Fingerprinter\\\\\\\",\\\\n \\\\\\\"Healthcheck\\\\\\\",\\\\n \\\\\\\"Heatmap\\\\\\\",\\\\n \\\\\\\"Highcharts\\\\\\\",\\\\n \\\\\\\"Highstock\\\\\\\",\\\\n \\\\\\\"Interactable\\\\\\\",\\\\n \\\\\\\"Kubernetes\\\\\\\",\\\\n \\\\\\\"MMDB\\\\\\\",\\\\n \\\\\\\"Nightmode\\\\\\\",\\\\n \\\\\\\"Overbookable\\\\\\\",\\\\n \\\\\\\"Parens\\\\\\\",\\\\n \\\\\\\"Serializable\\\\\\\",\\\\n \\\\\\\"TODOs\\\\\\\",\\\\n \\\\\\\"abilitytype\\\\\\\",\\\\n \\\\\\\"accesstoken\\\\\\\",\\\\n \\\\\\\"accesstokens\\\\\\\",\\\\n \\\\\\\"anonymize\\\\\\\",\\\\n \\\\\\\"bullmq\\\\\\\",\\\\n \\\\\\\"calponia\\\\\\\",\\\\n \\\\\\\"checkmark\\\\\\\",\\\\n \\\\\\\"craftable\\\\\\\",\\\\n \\\\\\\"dataloader\\\\\\\",\\\\n \\\\\\\"datepicker\\\\\\\",\\\\n \\\\\\\"datetime\\\\\\\",\\\\n \\\\\\\"dbip\\\\\\\",\\\\n \\\\\\\"devoxa\\\\\\\",\\\\n \\\\\\\"downsample\\\\\\\",\\\\n \\\\\\\"esnext\\\\\\\",\\\\n \\\\\\\"execall\\\\\\\",\\\\n \\\\\\\"geolocate\\\\\\\",\\\\n \\\\\\\"geolocation\\\\\\\",\\\\n \\\\\\\"healthchecks\\\\\\\",\\\\n \\\\\\\"hocs\\\\\\\",\\\\n \\\\\\\"ldap\\\\\\\",\\\\n \\\\\\\"lingui\\\\\\\",\\\\n \\\\\\\"mailhog\\\\\\\",\\\\n \\\\\\\"memoizable\\\\\\\",\\\\n \\\\\\\"mjml\\\\\\\",\\\\n \\\\\\\"multiline\\\\\\\",\\\\n \\\\\\\"nestjs\\\\\\\",\\\\n \\\\\\\"overtype\\\\\\\",\\\\n \\\\\\\"pageload\\\\\\\",\\\\n \\\\\\\"pexpire\\\\\\\",\\\\n \\\\\\\"printf\\\\\\\",\\\\n \\\\\\\"pubsub\\\\\\\",\\\\n \\\\\\\"quotemark\\\\\\\",\\\\n \\\\\\\"randomstring\\\\\\\",\\\\n \\\\\\\"returnvalue\\\\\\\",\\\\n \\\\\\\"singleline\\\\\\\",\\\\n \\\\\\\"smtp\\\\\\\",\\\\n \\\\\\\"snipver\\\\\\\",\\\\n \\\\\\\"themself\\\\\\\",\\\\n \\\\\\\"typechecked\\\\\\\",\\\\n \\\\\\\"unflatten\\\\\\\",\\\\n \\\\\\\"uninvite\\\\\\\",\\\\n \\\\\\\"webhook\\\\\\\",\\\\n \\\\\\\"xxxl\\\\\\\",\\\\n \\\\\\\"yeeted\\\\\\\"\\\\n ],\\\\n \\\\\\\"cSpell.showStatus\\\\\\\": false,\\\\n \\\\\\\"cSpell.ignorePaths\\\\\\\": [\\\\\\\"**/.vscode-server-insiders/**\\\\\\\", \\\\\\\"**/.vscode-server/**\\\\\\\", \\\\\\\"**/node_modules/**\\\\\\\", \\\\\\\"**/.git/**\\\\\\\"],\\\\n \\\\n \\\\\\\"gitlens.hovers.currentLine.over\\\\\\\": \\\\\\\"line\\\\\\\",\\\\n \\\\\\\"gitlens.currentLine.enabled\\\\\\\": false,\\\\n \\\\\\\"gitlens.statusBar.enabled\\\\\\\": false,\\\\n\\\\n \\\\\\\"quokka.compactMessageOutput\\\\\\\": true,\\\\n \\\\\\\"quokka.showOutputOnStart\\\\\\\": false,\\\\n \\\\n \\\\n \\\\n \\\\\\\"better-comments.tags\\\\\\\": [\\\\n {\\\\n \\\\\\\"tag\\\\\\\": \\\\\\\"todo\\\\\\\",\\\\n \\\\\\\"color\\\\\\\": \\\\\\\"#A8C023\\\\\\\",\\\\n \\\\\\\"strikethrough\\\\\\\": false,\\\\n \\\\\\\"backgroundColor\\\\\\\": \\\\\\\"transparent\\\\\\\"\\\\n }\\\\n ],\\\\n\\\\n // Customized from here: https://github.com/xr0master/vscode-intellij-darcula-theme/issues/6\\\\n\\\\n \\\\\\\"workbench.colorTheme\\\\\\\": \\\\\\\"Webstorm IntelliJ Darcula Theme\\\\\\\",\\\\n \\\\\\\"workbench.colorCustomizations\\\\\\\": {\\\\n \\\\\\\"[Webstorm IntelliJ Darcula Theme]\\\\\\\": {\\\\n \\\\\\\"activityBar.activeBackground\\\\\\\": \\\\\\\"#4e5254\\\\\\\",\\\\n \\\\\\\"activityBar.activeBorder\\\\\\\": \\\\\\\"#3b9eba\\\\\\\",\\\\n \\\\\\\"activityBar.border\\\\\\\": \\\\\\\"#2e2f2f\\\\\\\",\\\\n \\\\\\\"activityBar.foreground\\\\\\\": \\\\\\\"#bababa\\\\\\\",\\\\n \\\\\\\"activityBar.inactiveForeground\\\\\\\": \\\\\\\"#bababa\\\\\\\",\\\\n \\\\\\\"breadcrumb.activeSelectionForeground\\\\\\\": \\\\\\\"#6696bd\\\\\\\",\\\\n \\\\\\\"breadcrumb.background\\\\\\\": \\\\\\\"#303234\\\\\\\",\\\\n \\\\\\\"breadcrumb.focusForeground\\\\\\\": \\\\\\\"#6696bd\\\\\\\",\\\\n \\\\\\\"breadcrumbPicker.background\\\\\\\": \\\\\\\"#3c3f41ee\\\\\\\",\\\\n\\\\n \\\\\\\"editor.selectionBackground\\\\\\\": \\\\\\\"#214283\\\\\\\",\\\\n \\\\\\\"editor.selectionHighlightBackground\\\\\\\": \\\\\\\"#3441344d\\\\\\\",\\\\n \\\\\\\"editor.wordHighlightBackground\\\\\\\": \\\\\\\"#3441344d\\\\\\\",\\\\n \\\\\\\"editor.wordHighlightStrongBackground\\\\\\\": \\\\\\\"#40332B4d\\\\\\\",\\\\n \\\\n \\\\\\\"editorGroupHeader.noTabsBackground\\\\\\\": \\\\\\\"#3c3f41\\\\\\\",\\\\n \\\\\\\"editorGroupHeader.tabsBackground\\\\\\\": \\\\\\\"#3c3f41\\\\\\\",\\\\n \\\\\\\"editorGutter.background\\\\\\\": \\\\\\\"#313335\\\\\\\",\\\\n \\\\\\\"editorHoverWidget.background\\\\\\\": \\\\\\\"#3c3f41ee\\\\\\\",\\\\n \\\\\\\"editorHoverWidget.border\\\\\\\": \\\\\\\"#252525c0\\\\\\\",\\\\n \\\\\\\"editorIndentGuide.activeBackground\\\\\\\": \\\\\\\"#434343\\\\\\\",\\\\n \\\\\\\"editorIndentGuide.background\\\\\\\": \\\\\\\"#373737\\\\\\\",\\\\n \\\\\\\"editorLink.activeForeground\\\\\\\": \\\\\\\"#5398f3\\\\\\\",\\\\n \\\\\\\"editorRuler.foreground\\\\\\\": \\\\\\\"#373737\\\\\\\",\\\\n \\\\\\\"editorSuggestWidget.background\\\\\\\": \\\\\\\"#3c3f41ee\\\\\\\",\\\\n \\\\\\\"editorSuggestWidget.border\\\\\\\": \\\\\\\"#252525C0\\\\\\\",\\\\n \\\\\\\"editorSuggestWidget.foreground\\\\\\\": \\\\\\\"#b7b7b7\\\\\\\",\\\\n \\\\\\\"editorSuggestWidget.highlightForeground\\\\\\\": \\\\\\\"#cd75d3\\\\\\\",\\\\n \\\\\\\"editorSuggestWidget.selectedBackground\\\\\\\": \\\\\\\"#004fa3\\\\\\\",\\\\n \\\\\\\"editorWidget.background\\\\\\\": \\\\\\\"#3c3f41ee\\\\\\\",\\\\n \\\\\\\"menu.background\\\\\\\": \\\\\\\"#3c3f41ee\\\\\\\",\\\\n \\\\\\\"menu.selectionBackground\\\\\\\": \\\\\\\"#004fa3\\\\\\\",\\\\n \\\\\\\"menu.selectionForeground\\\\\\\": \\\\\\\"#dddddd\\\\\\\",\\\\n \\\\\\\"notificationLink.foreground\\\\\\\": \\\\\\\"#5398f3\\\\\\\",\\\\n \\\\\\\"panel.border\\\\\\\": \\\\\\\"#2e2f2f\\\\\\\",\\\\n \\\\\\\"peekViewEditor.matchHighlightBackground\\\\\\\": \\\\\\\"#ea5c004d\\\\\\\",\\\\n \\\\\\\"peekViewResult.background\\\\\\\": \\\\\\\"#001f33\\\\\\\",\\\\n \\\\\\\"peekViewResult.selectionBackground\\\\\\\": \\\\\\\"#00000090\\\\\\\",\\\\n \\\\\\\"scrollbar.shadow\\\\\\\": \\\\\\\"#00000000\\\\\\\",\\\\n \\\\\\\"scrollbarSlider.activeBackground\\\\\\\": \\\\\\\"#555758B0\\\\\\\",\\\\n \\\\\\\"scrollbarSlider.background\\\\\\\": \\\\\\\"#55575870\\\\\\\",\\\\n \\\\\\\"scrollbarSlider.hoverBackground\\\\\\\": \\\\\\\"#55575890\\\\\\\",\\\\n \\\\\\\"sideBar.border\\\\\\\": \\\\\\\"#2e2f2f\\\\\\\",\\\\n \\\\\\\"sideBarSectionHeader.background\\\\\\\": \\\\\\\"#3c3f41\\\\\\\",\\\\n \\\\\\\"sideBarSectionHeader.border\\\\\\\": \\\\\\\"#2e2f2f\\\\\\\",\\\\n \\\\\\\"statusBar.border\\\\\\\": \\\\\\\"#2e2f2f\\\\\\\",\\\\n \\\\\\\"statusBar.noFolderBackground\\\\\\\": \\\\\\\"#3c3f41\\\\\\\",\\\\n \\\\\\\"tab.activeBorder\\\\\\\": \\\\\\\"#3b9eba\\\\\\\",\\\\n \\\\\\\"tab.border\\\\\\\": \\\\\\\"#2e2f2f\\\\\\\",\\\\n \\\\\\\"tab.inactiveBackground\\\\\\\": \\\\\\\"#3c3f41\\\\\\\",\\\\n \\\\\\\"tab.inactiveForeground\\\\\\\": \\\\\\\"#bababa\\\\\\\",\\\\n \\\\\\\"tab.unfocusedActiveBackground\\\\\\\": \\\\\\\"#4e5254\\\\\\\",\\\\n \\\\\\\"tab.unfocusedActiveBorder\\\\\\\": \\\\\\\"#747a80\\\\\\\",\\\\n \\\\\\\"tab.unfocusedActiveForeground\\\\\\\": \\\\\\\"#bababa\\\\\\\",\\\\n \\\\\\\"tab.unfocusedInactiveForeground\\\\\\\": \\\\\\\"#bababa\\\\\\\",\\\\n \\\\\\\"terminal.border\\\\\\\": \\\\\\\"#3c3f41\\\\\\\",\\\\n \\\\\\\"textLink.activeForeground\\\\\\\": \\\\\\\"#5398f3\\\\\\\",\\\\n \\\\\\\"textLink.foreground\\\\\\\": \\\\\\\"#5398f3\\\\\\\",\\\\n \\\\\\\"titleBar.activeBackground\\\\\\\": \\\\\\\"#3c3f41\\\\\\\",\\\\n \\\\\\\"titleBar.activeForeground\\\\\\\": \\\\\\\"#bababa\\\\\\\",\\\\n \\\\\\\"titleBar.border\\\\\\\": \\\\\\\"#2e2f2f\\\\\\\",\\\\n \\\\\\\"titleBar.inactiveBackground\\\\\\\": \\\\\\\"#3c3f41\\\\\\\",\\\\n \\\\\\\"titleBar.inactiveForeground\\\\\\\": \\\\\\\"#bababa80\\\\\\\",\\\\n \\\\\\\"editorBracketMatch.background\\\\\\\": \\\\\\\"#3b514d\\\\\\\",\\\\n \\\\\\\"editorBracketMatch.border\\\\\\\": \\\\\\\"#00000000\\\\\\\",\\\\n }\\\\n },\\\\n\\\\n \\\\\\\"editor.tokenColorCustomizations\\\\\\\": {\\\\n \\\\\\\"[Webstorm IntelliJ Darcula Theme]\\\\\\\": {\\\\n \\\\\\\"textMateRules\\\\\\\": [\\\\n // Disable italics\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Line/HTML comments\\\\\\\",\\\\n \\\\\\\"scope\\\\\\\": [\\\\n \\\\\\\"comment.line\\\\\\\",\\\\n \\\\\\\"comment.block\\\\\\\",\\\\n \\\\\\\"comment.block.html\\\\\\\",\\\\n \\\\\\\"variable.other.constant.property\\\\\\\",\\\\n \\\\\\\"variable.other.constant.object.property\\\\\\\"\\\\n ],\\\\n \\\\\\\"settings\\\\\\\": {\\\\n \\\\\\\"fontStyle\\\\\\\": \\\\\\\"\\\\\\\"\\\\n }\\\\n },\\\\n\\\\n // Un-bold keywords\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Global keywords\\\\\\\",\\\\n \\\\\\\"scope\\\\\\\": [\\\\n \\\\\\\"constant.language\\\\\\\",\\\\n \\\\\\\"keyword.control\\\\\\\",\\\\n \\\\\\\"keyword.operator.expression\\\\\\\",\\\\n \\\\\\\"keyword.operator.new\\\\\\\",\\\\n \\\\\\\"keyword.other.debugger\\\\\\\",\\\\n \\\\\\\"support.type\\\\\\\",\\\\n \\\\\\\"storage.type\\\\\\\",\\\\n \\\\\\\"storage.modifier\\\\\\\",\\\\n \\\\\\\"variable.language.super\\\\\\\",\\\\n \\\\\\\"variable.language.this\\\\\\\"\\\\n ],\\\\n \\\\\\\"settings\\\\\\\": {\\\\n \\\\\\\"fontStyle\\\\\\\": \\\\\\\"\\\\\\\"\\\\n }\\\\n },\\\\n\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"JSDoc types\\\\\\\",\\\\n \\\\\\\"scope\\\\\\\": \\\\\\\"entity.name.type.instance.jsdoc\\\\\\\",\\\\n \\\\\\\"settings\\\\\\\": {\\\\n \\\\\\\"foreground\\\\\\\": \\\\\\\"#a9b7c6\\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"JSDoc variables\\\\\\\",\\\\n \\\\\\\"scope\\\\\\\": \\\\\\\"variable.other.jsdoc\\\\\\\",\\\\n \\\\\\\"settings\\\\\\\": {\\\\n \\\\\\\"foreground\\\\\\\": \\\\\\\"#90734b\\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"JSDoc definition 'at' signs\\\\\\\",\\\\n \\\\\\\"scope\\\\\\\": \\\\\\\"punctuation.definition.block.tag.jsdoc\\\\\\\",\\\\n \\\\\\\"settings\\\\\\\": {\\\\n \\\\\\\"foreground\\\\\\\": \\\\\\\"#6a8759\\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"JSDoc definition brackets\\\\\\\",\\\\n \\\\\\\"scope\\\\\\\": [\\\\n \\\\\\\"punctuation.definition.bracket.curly.begin.jsdoc\\\\\\\",\\\\n \\\\\\\"punctuation.definition.bracket.curly.end.jsdoc\\\\\\\",\\\\n \\\\\\\"punctuation.definition.optional-value.begin.bracket.square.jsdoc\\\\\\\",\\\\n \\\\\\\"punctuation.definition.optional-value.end.bracket.square.jsdoc\\\\\\\"\\\\n ],\\\\n \\\\\\\"settings\\\\\\\": {\\\\n \\\\\\\"foreground\\\\\\\": \\\\\\\"#808080\\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Decorator 'at' signs\\\\\\\",\\\\n \\\\\\\"scope\\\\\\\": \\\\\\\"punctuation.decorator.ts\\\\\\\",\\\\n \\\\\\\"settings\\\\\\\": {\\\\n \\\\\\\"foreground\\\\\\\": \\\\\\\"#ffc66d\\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"HTML attributes\\\\\\\",\\\\n \\\\\\\"scope\\\\\\\": \\\\\\\"support.type.object.html-attribute\\\\\\\",\\\\n \\\\\\\"settings\\\\\\\": {\\\\n \\\\\\\"foreground\\\\\\\": \\\\\\\"#a9b7c6\\\\\\\",\\\\n \\\\\\\"fontStyle\\\\\\\": \\\\\\\"\\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Doc Blocks\\\\\\\",\\\\n \\\\\\\"scope\\\\\\\": \\\\\\\"comment.block.documentation\\\\\\\",\\\\n \\\\\\\"settings\\\\\\\": {\\\\n \\\\\\\"foreground\\\\\\\": \\\\\\\"#629755\\\\\\\"\\\\n }\\\\n },\\\\n {\\\\n \\\\\\\"name\\\\\\\": \\\\\\\"Basic keyword style (e.g. for dockerfiles)\\\\\\\",\\\\n \\\\\\\"scope\\\\\\\": \\\\\\\"keyword\\\\\\\",\\\\n \\\\\\\"settings\\\\\\\": {\\\\n \\\\\\\"foreground\\\\\\\": \\\\\\\"#CC7832\\\\\\\"\\\\n }\\\\n }\\\\n ]\\\\n }\\\\n },\\\\n\\\\n\\\\n \\\\\\\"remote.SSH.remotePlatform\\\\\\\": {\\\\n \\\\\\\"192.168.0.7\\\\\\\": \\\\\\\"linux\\\\\\\",\\\\n \\\\\\\"192.168.56.3\\\\\\\": \\\\\\\"linux\\\\\\\",\\\\n \\\\\\\"virtualbox\\\\\\\": \\\\\\\"linux\\\\\\\",\\\\n \\\\\\\"116.202.217.115\\\\\\\": \\\\\\\"linux\\\\\\\",\\\\n \\\\\\\"gw2efficiency.database-2\\\\\\\": \\\\\\\"linux\\\\\\\",\\\\n \\\\\\\"gw2efficiency.database-primary\\\\\\\": \\\\\\\"linux\\\\\\\",\\\\n \\\\\\\"gw2efficiency.database-1\\\\\\\": \\\\\\\"linux\\\\\\\",\\\\n \\\\\\\"94.130.178.250\\\\\\\": \\\\\\\"linux\\\\\\\",\\\\n \\\\\\\"gw2efficiency.mongodb\\\\\\\": \\\\\\\"linux\\\\\\\"\\\\n },\\\\n \\\\\\\"editor.columnSelection\\\\\\\": false,\\\\n \\\\\\\"editor.foldingHighlight\\\\\\\": false,\\\\n \\\\\\\"workbench.editor.enablePreviewFromQuickOpen\\\\\\\": false,\\\\n \\\\\\\"editor.wordWrapColumn\\\\\\\": 100,\\\\n \\\\\\\"editor.rulers\\\\\\\": [\\\\n 100\\\\n ],\\\\n \\\\\\\"files.autoSave\\\\\\\": \\\\\\\"onWindowChange\\\\\\\",\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n\\\\n \\\\\\\"tslint.exclude\\\\\\\": [\\\\n \\\\\\\"**/node_modules/**\\\\\\\"\\\\n ],\\\\n \\\\\\\"diffEditor.ignoreTrimWhitespace\\\\\\\": false,\\\\n \\\\\\\"gitlens.codeLens.enabled\\\\\\\": false,\\\\n \\\\\\\"gitlens.hovers.enabled\\\\\\\": false,\\\\n \\\\\\\"workbench.startupEditor\\\\\\\": \\\\\\\"newUntitledFile\\\\\\\",\\\\n \\\\\\\"remote.SSH.connectTimeout\\\\\\\": 30,\\\\n \\\\\\\"remote.SSH.useLocalServer\\\\\\\": false,\\\\n \\\\\\\"todo.file.name\\\\\\\": \\\\\\\"TODO,*.todo\\\\\\\",\\\\n \\\\\\\"window.zoomLevel\\\\\\\": 0,\\\\n \\\\\\\"remote.SSH.allowLocalServerDownload\\\\\\\": false,\\\\n \\\\\\\"editor.copyWithSyntaxHighlighting\\\\\\\": false\\\\n}\\\\n\\\"}\"}"}
{"ref":"3dc48fc3-2fdf-4c4b-bf45-240ddcac32bf","content":"{\"version\":1,\"content\":\"{\\\"typescript.json\\\":\\\"{\\\\n\\\\t// Place your snippets for typescript here. Each snippet is defined under a snippet name and has a prefix, body and \\\\n\\\\t// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:\\\\n\\\\t// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the \\\\n\\\\t// same ids are connected.\\\\n // Example:\\\\n\\\\n\\\\t// \\\\\\\"Print to console\\\\\\\": {\\\\n\\\\t// \\\\t\\\\\\\"prefix\\\\\\\": \\\\\\\"log\\\\\\\",\\\\n\\\\t// \\\\t\\\\\\\"body\\\\\\\": [\\\\n\\\\t// \\\\t\\\\t\\\\\\\"console.log('$1');\\\\\\\",\\\\n\\\\t// \\\\t\\\\t\\\\\\\"$2\\\\\\\"\\\\n\\\\t// \\\\t],\\\\n\\\\t// \\\\t\\\\\\\"description\\\\\\\": \\\\\\\"Log output to console\\\\\\\"\\\\n\\\\t// }\\\\n}\\\",\\\"typescriptreact.json\\\":\\\"{\\\\n\\\\t// Place your snippets for typescriptreact here. Each snippet is defined under a snippet name and has a prefix, body and \\\\n\\\\t// description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are:\\\\n\\\\t// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the \\\\n // same ids are connected.\\\\n\\\\n \\\\\\\"React Functional Component\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"rfc\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"import React from 'react'\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"export interface $1Props {\\\\\\\",\\\\n \\\\\\\" $0\\\\\\\",\\\\n \\\\\\\"}\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"export const $1 = (props: $1Props) => {\\\\\\\",\\\\n \\\\\\\" return null\\\\\\\",\\\\n \\\\\\\"}\\\\\\\",\\\\n ],\\\\n },\\\\n\\\\n \\\\\\\"React Functional Component with className\\\\\\\": {\\\\n \\\\\\\"prefix\\\\\\\": \\\\\\\"rfcc\\\\\\\",\\\\n \\\\\\\"body\\\\\\\": [\\\\n \\\\\\\"import React from 'react'\\\\\\\",\\\\n \\\\\\\"import c from 'classnames'\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"export interface $1Props {\\\\\\\",\\\\n \\\\\\\" /** Any additional CSS classes */\\\\\\\",\\\\n \\\\\\\" className?: string\\\\\\\",\\\\n \\\\\\\"}\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\"export const $1 = (pProps: $1Props) => {\\\\\\\",\\\\n \\\\\\\" const props = { className: '', ...pProps }\\\\\\\",\\\\n \\\\\\\"\\\\\\\",\\\\n \\\\\\\" return <div className={c(['cy-$1', props.className])}>$0</div>\\\\\\\",\\\\n \\\\\\\"}\\\\\\\",\\\\n ]\\\\n }\\\\n\\\\n}\\\"}\"}"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment