Skip to content

Instantly share code, notes, and snippets.

@BerkeKaragoz
Last active December 2, 2023 12:09
Show Gist options
  • Save BerkeKaragoz/b91d3c116d86c17c218ab52c052d9a6c to your computer and use it in GitHub Desktop.
Save BerkeKaragoz/b91d3c116d86c17c218ab52c052d9a6c to your computer and use it in GitHub Desktop.
BerkeKaragoz VSCode Settings
{"name":"BerkeKaragoz","settings":"{\"settings\":\"{\\n \\\"workbench.iconTheme\\\": \\\"material-icon-theme\\\",\\n \\\"editor.formatOnSave\\\": true,\\n \\\"[typescriptreact]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"indentRainbow.colorOnWhiteSpaceOnly\\\": true,\\n \\\"[typescript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[scss]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[html]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[javascript]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[json]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"[jsonc]\\\": {\\n \\\"editor.defaultFormatter\\\": \\\"esbenp.prettier-vscode\\\"\\n },\\n \\\"githubPullRequests.pullBranch\\\": \\\"never\\\",\\n \\\"typescript.preferences.importModuleSpecifier\\\": \\\"non-relative\\\",\\n \\\"javascript.preferences.importModuleSpecifier\\\": \\\"non-relative\\\",\\n \\\"markdown.extension.preview.autoShowPreviewToSide\\\": true,\\n \\\"githubPullRequests.queries\\\": [\\n {\\n \\\"label\\\": \\\"Waiting For My Review\\\",\\n \\\"query\\\": \\\"is:open review-requested:${user}\\\"\\n },\\n {\\n \\\"label\\\": \\\"Assigned To Me\\\",\\n \\\"query\\\": \\\"is:open assignee:${user}\\\"\\n },\\n {\\n \\\"label\\\": \\\"Created By Me\\\",\\n \\\"query\\\": \\\"is:open author:${user}\\\"\\n }\\n ],\\n \\\"typescript.inlayHints.enumMemberValues.enabled\\\": true,\\n \\\"typescript.inlayHints.functionLikeReturnTypes.enabled\\\": true,\\n \\\"workbench.sideBar.location\\\": \\\"right\\\",\\n \\\"typescript.tsserver.maxTsServerMemory\\\": 6128,\\n \\\"breadcrumbs.showArrays\\\": false,\\n \\\"breadcrumbs.showBooleans\\\": false,\\n \\\"breadcrumbs.showConstructors\\\": false,\\n \\\"breadcrumbs.showConstants\\\": false,\\n \\\"breadcrumbs.showEnumMembers\\\": false,\\n \\\"breadcrumbs.showEnums\\\": false,\\n \\\"breadcrumbs.showEvents\\\": false,\\n \\\"breadcrumbs.showFields\\\": false,\\n \\\"breadcrumbs.showInterfaces\\\": false,\\n \\\"breadcrumbs.showMethods\\\": false,\\n \\\"breadcrumbs.showNull\\\": false,\\n \\\"breadcrumbs.showNumbers\\\": false,\\n \\\"breadcrumbs.showObjects\\\": false,\\n \\\"breadcrumbs.showOperators\\\": false,\\n \\\"breadcrumbs.showStrings\\\": false,\\n \\\"breadcrumbs.showProperties\\\": false,\\n \\\"breadcrumbs.showStructs\\\": false,\\n \\\"breadcrumbs.showTypeParameters\\\": false,\\n \\\"breadcrumbs.showVariables\\\": false,\\n \\\"liveshare.alwaysFollowHost\\\": true,\\n \\\"gitlens.graph.layout\\\": \\\"editor\\\",\\n \\\"editor.codeActionsOnSave\\\": {\\n \\\"source.fixAll.eslint\\\": true\\n //\\\"source.organizeImports\\\": true\\n },\\n \\\"javascript.inlayHints.enumMemberValues.enabled\\\": true,\\n \\\"typescript.inlayHints.parameterNames.enabled\\\": \\\"literals\\\",\\n \\\"editor.inlayHints.enabled\\\": \\\"offUnlessPressed\\\",\\n \\\"editor.minimap.renderCharacters\\\": false,\\n \\\"editor.minimap.showSlider\\\": \\\"always\\\",\\n \\\"editor.minimap.size\\\": \\\"fit\\\",\\n \\\"workbench.activityBar.location\\\": \\\"top\\\",\\n \\\"window.commandCenter\\\": false,\\n \\\"workbench.editor.showTabs\\\": \\\"single\\\",\\n \\\"diffEditor.ignoreTrimWhitespace\\\": false\\n}\\n\"}","keybindings":"{\"keybindings\":\"// Place your key bindings in this file to override the defaults\\n[\\n {\\n \\\"key\\\": \\\"shift+space\\\",\\n \\\"command\\\": \\\"editor.action.insertSnippet\\\",\\n \\\"when\\\": \\\"editorTextFocus\\\",\\n \\\"args\\\": {\\n \\\"langId\\\": \\\"typescript\\\",\\n \\\"name\\\": \\\"console.log variable\\\"\\n }\\n }\\n]\",\"platform\":1}","snippets":"{\"snippets\":{\"berkekaragoz.code-snippets\":\"{\\n\\t// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and \\n\\t// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope \\n\\t// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is \\n\\t// 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. \\n\\t// Placeholders with the same ids are connected.\\n\\t// Example:\\n\\t// \\\"Print to console\\\": {\\n\\t// \\t\\\"scope\\\": \\\"javascript,typescript\\\",\\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\\n\\t\\\"console.log variable\\\": {\\n\\t\\t\\\"prefix\\\": \\\"clv\\\",\\n\\t\\t\\\"scope\\\": \\\"javascript,typescript,javascriptreact,typescriptreact\\\",\\n\\t\\t\\\"body\\\": [\\\"console.log(${1:}, \\\\\\\"${1:} ${TM_FILENAME_BASE}:${TM_LINE_NUMBER}\\\\\\\");$0\\\"]\\n\\t },\\n\\t \\\"eslint-disable-line\\\": {\\n\\t\\t\\\"prefix\\\": \\\"ed\\\",\\n\\t\\t\\\"scope\\\": \\\"javascript,typescript,javascriptreact,typescriptreact\\\",\\n\\t\\t\\\"body\\\": [\\\"${LINE_COMMENT}eslint-disable-line\\\"]\\n\\t },\\n\\t \\\"eslint-next-disable-line\\\": {\\n\\t\\t\\\"prefix\\\": \\\"edx\\\",\\n\\t\\t\\\"scope\\\": \\\"javascript,typescript,javascriptreact,typescriptreact\\\",\\n\\t\\t\\\"body\\\": [\\\"${LINE_COMMENT}eslint-disable-next-line\\\"]\\n\\t }\\n}\",\"console.log variable.code-snippets\":\"{\\n\\t// Place your global snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and \\n\\t// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope \\n\\t// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is \\n\\t// 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. \\n\\t// Placeholders with the same ids are connected.\\n\\t// Example:\\n\\t// \\\"Print to console\\\": {\\n\\t// \\t\\\"scope\\\": \\\"javascript,typescript\\\",\\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}\"}}","extensions":"[{\"identifier\":{\"id\":\"dbaeumer.vscode-eslint\",\"uuid\":\"583b2b34-2c1e-4634-8c0b-0b82e283ea3a\"},\"displayName\":\"ESLint\"},{\"identifier\":{\"id\":\"esbenp.prettier-vscode\",\"uuid\":\"96fa4707-6983-4489-b7c5-d5ffdfdcce90\"},\"displayName\":\"Prettier - Code formatter\"},{\"identifier\":{\"id\":\"firsttris.vscode-jest-runner\",\"uuid\":\"13cd6cd6-3da6-4eb8-8d81-b47e6e710e59\"},\"displayName\":\"Jest Runner\"},{\"identifier\":{\"id\":\"kylepaulsen.stack-tabs\",\"uuid\":\"29b4e3b3-6896-4f72-b0d2-d2b910fea9bc\"},\"displayName\":\"stack-tabs\"},{\"identifier\":{\"id\":\"natqe.reload\",\"uuid\":\"b9484b93-0531-4fd3-b3dd-9ff58dcfe678\"},\"displayName\":\"Reload\"},{\"identifier\":{\"id\":\"oderwat.indent-rainbow\",\"uuid\":\"eaa2127d-cb69-4ab9-8505-a60c9ee5f28b\"}},{\"identifier\":{\"id\":\"pkief.material-icon-theme\",\"uuid\":\"5db78037-f674-459f-a236-db622c427c5b\"},\"displayName\":\"Material Icon Theme\"},{\"identifier\":{\"id\":\"stylelint.vscode-stylelint\",\"uuid\":\"ec35b5a3-9802-4c68-b5ff-e85f19ec0977\"},\"displayName\":\"Stylelint\"}]","globalState":"{\"storage\":{\"memento/gettingStartedService\":\"{\\\"pickColorTheme\\\":{\\\"done\\\":true},\\\"pickColorThemeWeb\\\":{\\\"done\\\":true},\\\"splitview\\\":{\\\"done\\\":true},\\\"debugging\\\":{\\\"done\\\":true},\\\"scmClone\\\":{\\\"done\\\":true},\\\"scmSetup\\\":{\\\"done\\\":true},\\\"scm\\\":{\\\"done\\\":true},\\\"installGit\\\":{\\\"done\\\":true},\\\"tasks\\\":{\\\"done\\\":true},\\\"shortcuts\\\":{\\\"done\\\":true},\\\"settings\\\":{\\\"done\\\":true},\\\"pickAFolderTask-Mac\\\":{\\\"done\\\":true},\\\"terminal\\\":{\\\"done\\\":true},\\\"commandPaletteTask\\\":{\\\"done\\\":true},\\\"commandPaletteTaskWeb\\\":{\\\"done\\\":true},\\\"pickAFolderTask-Other\\\":{\\\"done\\\":true},\\\"ms-azuretools.vscode-docker#dockerStart#openFolder\\\":{\\\"done\\\":true},\\\"eamodio.gitlens#gitlens.plus#gitlens.plus.trial.extend\\\":{\\\"done\\\":true},\\\"quickOpen\\\":{\\\"done\\\":true},\\\"quickOpenWeb\\\":{\\\"done\\\":true},\\\"ms-azuretools.vscode-docker#dockerStart#openFolderMac\\\":{\\\"done\\\":true},\\\"eamodio.gitlens#gitlens.welcome#gitlens.welcome.additional\\\":{\\\"done\\\":true},\\\"eamodio.gitlens#gitlens.welcome#gitlens.welcome.sidebars\\\":{\\\"done\\\":true}}\",\"workbench.welcomePage.hiddenCategories\":\"[\\\"Intermediate\\\"]\",\"ces/skipSurvey\":\"1.73.0\",\"workbench.view.extensions.state.hidden\":\"[{\\\"id\\\":\\\"workbench.views.extensions.installed\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchOutdated\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.workspaceRecommendations\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.popular\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.views.extensions.searchRecentlyUpdated\\\",\\\"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.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},{\\\"id\\\":\\\"workbench.views.extensions.deprecatedExtensions\\\",\\\"isHidden\\\":false}]\",\"workbench.panel.alignment\":\"center\",\"workbench.activity.pinnedViewlets2\":\"[{\\\"id\\\":\\\"workbench.view.explorer\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.view.scm\\\",\\\"pinned\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.view.extension.gitlensPatch\\\",\\\"pinned\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"workbench.view.extension.github-pull-request\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.gitlens\\\",\\\"pinned\\\":false,\\\"visible\\\":true,\\\"order\\\":8},{\\\"id\\\":\\\"workbench.view.extension.gitlab-workflow\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.debug\\\",\\\"pinned\\\":false,\\\"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.gitlensInspect\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"workbench.view.extension.thunder-client\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":15},{\\\"id\\\":\\\"workbench.view.extension.nx-console\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":12},{\\\"id\\\":\\\"workbench.view.extension.dockerView\\\",\\\"pinned\\\":false,\\\"visible\\\":true,\\\"order\\\":13},{\\\"id\\\":\\\"workbench.view.extension.github-pull-requests\\\",\\\"pinned\\\":false,\\\"visible\\\":true,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.view.extension.liveshare\\\",\\\"pinned\\\":false,\\\"visible\\\":true,\\\"order\\\":14},{\\\"id\\\":\\\"workbench.view.extension.gitlab-duo\\\",\\\"pinned\\\":false,\\\"visible\\\":false,\\\"order\\\":11},{\\\"id\\\":\\\"workbench.panel.chatSidebar\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":100},{\\\"id\\\":\\\"workbench.view.editSessions\\\",\\\"pinned\\\":true,\\\"visible\\\":false},{\\\"id\\\":\\\"workbench.view.sync\\\",\\\"pinned\\\":true,\\\"visible\\\":false},{\\\"id\\\":\\\"userDataProfiles\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\",\"workbench.explorer.views.state.hidden\":\"[{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":false,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.explorer.emptyView\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.fileView\\\",\\\"isHidden\\\":false,\\\"order\\\":1},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.session.explorer\\\",\\\"isHidden\\\":false,\\\"order\\\":2},{\\\"id\\\":\\\"learn-vim\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.sync\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.repositories\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.branches\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.commits\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.remotes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.stashes\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.tags\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.worktrees\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.contributors\\\",\\\"isHidden\\\":false}]\",\"workbench.statusbar.hidden\":\"[\\\"status.workspaceTrust.1667909634203\\\",\\\"status.workspaceTrust.8d4adcb1760631bc74d2bc7a011bc533\\\",\\\"status.workspaceTrust.1667921806821\\\",\\\"status.workspaceTrust.1667924854060\\\",\\\"status.workspaceTrust.1667925576325\\\",\\\"status.workspaceTrust.1667927039188\\\",\\\"status.workspaceTrust.f1b7fe37b93b909d16a2e814e52b1142\\\",\\\"status.workspaceTrust.1668060666888\\\",\\\"status.workspaceTrust.1668096718057\\\",\\\"status.workspaceTrust.1668096724254\\\",\\\"status.workspaceTrust.1669704419421\\\",\\\"status.workspaceTrust.e23e2d6c5f608850348c2046a3a6ba7b\\\",\\\"status.workspaceTrust.1670222521975\\\",\\\"status.workspaceTrust.1670236469040\\\",\\\"status.workspaceTrust.1670258876892\\\",\\\"status.workspaceTrust.1674469345267\\\",\\\"status.workspaceTrust.1674718153515\\\",\\\"status.workspaceTrust.1675254792292\\\",\\\"status.workspaceTrust.1675441123010\\\",\\\"status.workspaceTrust.1675858417028\\\",\\\"status.workspaceTrust.92668195c9e42fed78a4f4407564719a\\\",\\\"status.workspaceTrust.1675942667625\\\",\\\"status.workspaceTrust.bd24425d35de3f9bb4753cbbc4c9ffcb\\\",\\\"status.workspaceTrust.1677247323028\\\",\\\"status.workspaceTrust.50cdb26a8468258a93dcc6a639473cb1\\\",\\\"status.workspaceTrust.1680075975878\\\",\\\"status.workspaceTrust.1680797646368\\\",\\\"status.workspaceTrust.1681219430018\\\",\\\"status.workspaceTrust.1683716636903\\\",\\\"status.workspaceTrust.1686065409519\\\",\\\"status.workspaceTrust.1687279906994\\\",\\\"status.workspaceTrust.1688631749908\\\",\\\"status.workspaceTrust.1689090495550\\\",\\\"status.workspaceTrust.1692057049096\\\",\\\"status.workspaceTrust.1692057334167\\\",\\\"status.workspaceTrust.1692207517966\\\",\\\"status.workspaceTrust.03222716dc13486e3668179ef107a5bd\\\",\\\"status.workspaceTrust.1696495673397\\\",\\\"status.workspaceTrust.1696500166149\\\",\\\"status.workspaceTrust.1698067758031\\\",\\\"status.workspaceTrust.1698073854193\\\",\\\"status.workspaceTrust.1698073927527\\\",\\\"status.workspaceTrust.1698683356862\\\",\\\"status.workspaceTrust.1698862671378\\\",\\\"status.workspaceTrust.1698864043850\\\",\\\"status.workspaceTrust.1698864079866\\\",\\\"status.workspaceTrust.1698864089905\\\",\\\"status.workspaceTrust.1698864232516\\\",\\\"status.workspaceTrust.1698864311739\\\",\\\"status.workspaceTrust.1698865678994\\\",\\\"status.workspaceTrust.1700512456912\\\",\\\"status.workspaceTrust.29c25f66130a715bd5c658f67a70bd2c\\\",\\\"status.workspaceTrust.1700577698472\\\",\\\"status.workspaceTrust.b57e4a431aee73b5677c61ca9aa76fd2\\\",\\\"status.workspaceTrust.1701348269851\\\",\\\"status.workspaceTrust.d5c3905261c82272274a147f6df00d45\\\",\\\"status.workspaceTrust.58156a48d7de6b4b21e9d59c9a4323b9\\\",\\\"status.workspaceTrust.1701427391685\\\"]\",\"colorThemeData\":\"{\\\"id\\\":\\\"vs-dark HarryHopkinson-vim-theme-themes-vim-dark-hard-json\\\",\\\"label\\\":\\\"Vim Dark Hard\\\",\\\"settingsId\\\":\\\"Vim Dark Hard\\\",\\\"themeTokenColors\\\":[{\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"},\\\"scope\\\":[\\\"punctuation.section.embedded.begin.php\\\",\\\"punctuation.section.embedded.end.php\\\"]},{\\\"settings\\\":{\\\"background\\\":\\\"#1d2021\\\",\\\"foreground\\\":\\\"#ebdbb2\\\"}},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"emphasis\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"strong\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#458588\\\"},\\\"scope\\\":\\\"header\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#928374\\\",\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":[\\\"comment\\\",\\\"punctuation.definition.comment\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"},\\\"scope\\\":[\\\"constant\\\",\\\"support.constant\\\",\\\"variable.arguments\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"},\\\"scope\\\":\\\"constant.rgb-value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":\\\"entity.name.selector\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"},\\\"scope\\\":\\\"entity.other.attribute-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":[\\\"entity.name.tag\\\",\\\"punctuation.tag\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#cc241d\\\"},\\\"scope\\\":[\\\"invalid\\\",\\\"invalid.illegal\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b16286\\\"},\\\"scope\\\":\\\"invalid.deprecated\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":\\\"meta.selector\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"meta.preprocessor\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":\\\"meta.preprocessor.string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":\\\"meta.preprocessor.numeric\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"meta.header.diff\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"},\\\"scope\\\":\\\"storage\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"storage.modifier\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":\\\"string\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":\\\"string.tag\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":\\\"string.value\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"string.regexp\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"},\\\"scope\\\":\\\"string.escape\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":\\\"string.quasi\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":\\\"string.entity\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"},\\\"scope\\\":\\\"object\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"},\\\"scope\\\":\\\"module.node\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"},\\\"scope\\\":\\\"support.type.property-name\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"},\\\"scope\\\":\\\"keyword\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"},\\\"scope\\\":\\\"keyword.control\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":\\\"keyword.control.module\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d79921\\\"},\\\"scope\\\":\\\"keyword.control.less\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":\\\"keyword.operator\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"keyword.operator.new\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":\\\"keyword.other.unit\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"metatag.php\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"},\\\"scope\\\":\\\"support.function.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":\\\"constant.sha.git-rebase\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"},\\\"scope\\\":[\\\"meta.type.name\\\",\\\"meta.return.type\\\",\\\"meta.return-type\\\",\\\"meta.cast\\\",\\\"meta.type.annotation\\\",\\\"support.type\\\",\\\"storage.type.cs\\\",\\\"variable.class\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"},\\\"scope\\\":[\\\"variable.this\\\",\\\"support.variable\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"},\\\"scope\\\":[\\\"entity.name\\\",\\\"entity.static\\\",\\\"entity.name.class.static.function\\\",\\\"entity.name.function\\\",\\\"entity.name.class\\\",\\\"entity.name.type\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":[\\\"storage.type.function\\\",\\\"entity.function\\\",\\\"entity.name.function.static\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":\\\"entity.name.function.function-call\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"support.function.builtin\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#689d6a\\\"},\\\"scope\\\":[\\\"entity.name.method\\\",\\\"entity.name.method.function-call\\\",\\\"entity.name.static.function-call\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d5c4a1\\\"},\\\"scope\\\":\\\"brace\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"},\\\"scope\\\":[\\\"meta.parameter.type.variable\\\",\\\"variable.parameter\\\",\\\"variable.name\\\",\\\"variable.other\\\",\\\"variable\\\",\\\"string.constant.other.placeholder\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"},\\\"scope\\\":\\\"prototype\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"},\\\"scope\\\":\\\"storage.type.class\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#a89984\\\"},\\\"scope\\\":[\\\"punctuation\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"},\\\"scope\\\":\\\"punctuation.quoted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"},\\\"scope\\\":\\\"punctuation.quasi\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":[\\\"*url*\\\",\\\"*link*\\\",\\\"*uri*\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":[\\\"meta.function.python\\\",\\\"entity.name.function.python\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"},\\\"scope\\\":[\\\"storage.type.function.python\\\",\\\"storage.modifier.declaration\\\",\\\"storage.type.class.python\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"},\\\"scope\\\":\\\"meta.function-call.generic\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d5c4a1\\\"},\\\"scope\\\":\\\"meta.function-call.arguments\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\",\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"entity.name.function.decorator\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"constant.other.caps\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"},\\\"scope\\\":\\\"keyword.operator.logical\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"punctuation.definition.logical-expression\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"string.inperpolated.dollar.shell\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":[\\\"string.interpolated.dollar.shell\\\",\\\"string.interpolated.backtick.shell\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":\\\"keyword.control.directive\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"},\\\"scope\\\":\\\"support.function.C99\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":[\\\"meta.function.cs\\\",\\\"entity.name.function.cs\\\",\\\"entity.name.type.namespace.cs\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":[\\\"keyword.other.using.cs\\\",\\\"entity.name.variable.field.cs\\\",\\\"entity.name.variable.local.cs\\\",\\\"variable.other.readwrite.cs\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"},\\\"scope\\\":[\\\"keyword.other.this.cs\\\",\\\"keyword.other.base.cs\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"},\\\"scope\\\":\\\"meta.scope.prerequisites\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\",\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"entity.name.function.target\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#bdae93\\\"},\\\"scope\\\":[\\\"storage.modifier.import.java\\\",\\\"storage.modifier.package.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":[\\\"keyword.other.import.java\\\",\\\"keyword.other.package.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"},\\\"scope\\\":\\\"storage.type.java\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\",\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"storage.type.annotation\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":\\\"keyword.other.documentation.javadoc\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\",\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":\\\"comment.block.javadoc variable.parameter.java\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"},\\\"scope\\\":[\\\"source.java variable.other.object\\\",\\\"source.java variable.other.definition.java\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"},\\\"scope\\\":\\\"meta.function-parameters.lisp\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":\\\"markup.underline\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#928374\\\",\\\"fontStyle\\\":\\\"underline\\\"},\\\"scope\\\":\\\"string.other.link.title.markdown\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"},\\\"scope\\\":\\\"markup.underline.link\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"markup.bold\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"bold\\\",\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"markup.heading\\\"},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"italic\\\"},\\\"scope\\\":\\\"markup.italic\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":\\\"markup.inserted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d65d0e\\\"},\\\"scope\\\":\\\"markup.deleted\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"markup.changed\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#98971a\\\"},\\\"scope\\\":\\\"markup.punctuation.quote.beginning\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"},\\\"scope\\\":\\\"markup.punctuation.list.beginning\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":[\\\"markup.inline.raw\\\",\\\"markup.fenced_code.block\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"},\\\"scope\\\":\\\"string.quoted.double.json\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json support.type.property-name.json\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"},\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":[\\\"source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"entity.other.attribute-name.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"},\\\"scope\\\":\\\"source.css meta.selector\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":\\\"support.type.property-name.css\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":\\\"entity.other.attribute-name.class\\\"},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fb4934\\\"},\\\"scope\\\":[\\\"source.css support.function.transform\\\",\\\"source.css support.function.timing-function\\\",\\\"source.css support.function.misc\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d65d0e\\\"},\\\"scope\\\":[\\\"support.property-value\\\",\\\"constant.rgb-value\\\",\\\"support.property-value.scss\\\",\\\"constant.rgb-value.scss\\\"]},{\\\"settings\\\":{\\\"fontStyle\\\":\\\"normal\\\"},\\\"scope\\\":[\\\"entity.name.tag.css\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"},\\\"scope\\\":[\\\"punctuation.definition.tag\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\",\\\"fontStyle\\\":\\\"bold\\\"},\\\"scope\\\":[\\\"text.html entity.name.tag\\\",\\\"text.html punctuation.tag\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":[\\\"source.js variable.language\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":[\\\"source.ts variable.language\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"},\\\"scope\\\":[\\\"source.go storage.type\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":[\\\"source.go entity.name.import\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":[\\\"source.go keyword.package\\\",\\\"source.go keyword.import\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"},\\\"scope\\\":[\\\"source.go keyword.interface\\\",\\\"source.go keyword.struct\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#ebdbb2\\\"},\\\"scope\\\":[\\\"source.go entity.name.type\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#d3869b\\\"},\\\"scope\\\":[\\\"source.go entity.name.function\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"},\\\"scope\\\":[\\\"keyword.control.cucumber.table\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#b8bb26\\\"},\\\"scope\\\":[\\\"source.reason string.double\\\",\\\"source.reason string.regexp\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#8ec07c\\\"},\\\"scope\\\":[\\\"source.reason keyword.control.less\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#83a598\\\"},\\\"scope\\\":[\\\"source.reason entity.name.function\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":[\\\"source.reason support.property-value\\\",\\\"source.reason entity.name.filename\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":[\\\"source.powershell variable.other.member.powershell\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fabd2f\\\"},\\\"scope\\\":[\\\"source.powershell support.function.powershell\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#bdae93\\\"},\\\"scope\\\":[\\\"source.powershell support.function.attribute.powershell\\\"]},{\\\"settings\\\":{\\\"foreground\\\":\\\"#fe8019\\\"},\\\"scope\\\":[\\\"source.powershell meta.hashtable.assignment.powershell variable.other.readwrite.powershell\\\"]}],\\\"semanticTokenRules\\\":[],\\\"extensionData\\\":{\\\"_extensionId\\\":\\\"HarryHopkinson.vim-theme\\\",\\\"_extensionIsBuiltin\\\":false,\\\"_extensionName\\\":\\\"vim-theme\\\",\\\"_extensionPublisher\\\":\\\"HarryHopkinson\\\"},\\\"colorMap\\\":{\\\"focusBorder\\\":\\\"#3c3836\\\",\\\"foreground\\\":\\\"#ebdbb2\\\",\\\"widget.shadow\\\":\\\"#1d202130\\\",\\\"selection.background\\\":\\\"#689d6a80\\\",\\\"errorForeground\\\":\\\"#fb4934\\\",\\\"button.background\\\":\\\"#45858880\\\",\\\"button.foreground\\\":\\\"#ebdbb2\\\",\\\"button.hoverBackground\\\":\\\"#45858860\\\",\\\"button.secondaryBackground\\\":\\\"#3c383680\\\",\\\"button.secondaryForeground\\\":\\\"#ebdbb2\\\",\\\"button.secondaryHoverBackground\\\":\\\"#92837460\\\",\\\"dropdown.background\\\":\\\"#1d2021\\\",\\\"dropdown.border\\\":\\\"#3c3836\\\",\\\"dropdown.foreground\\\":\\\"#ebdbb2\\\",\\\"input.background\\\":\\\"#ebdbb205\\\",\\\"input.border\\\":\\\"#3c3836\\\",\\\"input.foreground\\\":\\\"#ebdbb2\\\",\\\"input.placeholderForeground\\\":\\\"#ebdbb260\\\",\\\"inputValidation.errorBorder\\\":\\\"#fb4934\\\",\\\"inputValidation.errorBackground\\\":\\\"#cc241d80\\\",\\\"inputValidation.infoBorder\\\":\\\"#83a598\\\",\\\"inputValidation.infoBackground\\\":\\\"#45858880\\\",\\\"inputValidation.warningBorder\\\":\\\"#fabd2f\\\",\\\"inputValidation.warningBackground\\\":\\\"#d7992180\\\",\\\"inputOption.activeBorder\\\":\\\"#ebdbb260\\\",\\\"scrollbar.shadow\\\":\\\"#1d2021\\\",\\\"scrollbarSlider.activeBackground\\\":\\\"#689d6a\\\",\\\"scrollbarSlider.hoverBackground\\\":\\\"#665c54\\\",\\\"scrollbarSlider.background\\\":\\\"#50494599\\\",\\\"badge.background\\\":\\\"#d3869b\\\",\\\"badge.foreground\\\":\\\"#1d2021\\\",\\\"progressBar.background\\\":\\\"#689d6a\\\",\\\"list.activeSelectionBackground\\\":\\\"#3c383680\\\",\\\"list.activeSelectionForeground\\\":\\\"#8ec07c\\\",\\\"list.hoverBackground\\\":\\\"#3c383680\\\",\\\"list.hoverForeground\\\":\\\"#d5c4a1\\\",\\\"list.focusBackground\\\":\\\"#3c3836\\\",\\\"list.focusForeground\\\":\\\"#ebdbb2\\\",\\\"list.inactiveSelectionForeground\\\":\\\"#689d6a\\\",\\\"list.inactiveSelectionBackground\\\":\\\"#3c383680\\\",\\\"list.dropBackground\\\":\\\"#3c3836\\\",\\\"list.highlightForeground\\\":\\\"#689d6a\\\",\\\"sideBar.background\\\":\\\"#1d2021\\\",\\\"sideBar.foreground\\\":\\\"#d5c4a1\\\",\\\"sideBar.border\\\":\\\"#3c3836\\\",\\\"sideBarTitle.foreground\\\":\\\"#ebdbb2\\\",\\\"sideBarSectionHeader.background\\\":\\\"#1d202100\\\",\\\"sideBarSectionHeader.foreground\\\":\\\"#ebdbb2\\\",\\\"activityBar.background\\\":\\\"#1d2021\\\",\\\"activityBar.dropBackground\\\":\\\"#1d2021\\\",\\\"activityBar.foreground\\\":\\\"#ebdbb2\\\",\\\"activityBar.border\\\":\\\"#3c3836\\\",\\\"activityBarBadge.background\\\":\\\"#458588\\\",\\\"activityBarBadge.foreground\\\":\\\"#ebdbb2\\\",\\\"editorGroup.background\\\":\\\"#3c3836\\\",\\\"editorGroup.border\\\":\\\"#3c3836\\\",\\\"editorGroup.dropBackground\\\":\\\"#3c383660\\\",\\\"editorGroupHeader.noTabsBackground\\\":\\\"#3c3836\\\",\\\"editorGroupHeader.tabsBackground\\\":\\\"#1d2021\\\",\\\"editorGroupHeader.tabsBorder\\\":\\\"#3c3836\\\",\\\"tab.border\\\":\\\"#1d202100\\\",\\\"tab.activeBorder\\\":\\\"#689d6a\\\",\\\"tab.activeBackground\\\":\\\"#32302f\\\",\\\"tab.activeForeground\\\":\\\"#ebdbb2\\\",\\\"tab.inactiveForeground\\\":\\\"#a89984\\\",\\\"tab.inactiveBackground\\\":\\\"#1d2021\\\",\\\"tab.unfocusedActiveForeground\\\":\\\"#a89984\\\",\\\"tab.unfocusedActiveBorder\\\":\\\"#1d202100\\\",\\\"tab.unfocusedInactiveForeground\\\":\\\"#928374\\\",\\\"editor.background\\\":\\\"#1d2021\\\",\\\"editor.foreground\\\":\\\"#ebdbb2\\\",\\\"editorLineNumber.foreground\\\":\\\"#665c54\\\",\\\"editorLineNumber.activeForeground\\\":\\\"#fabd2f\\\",\\\"editorCursor.foreground\\\":\\\"#ebdbb2\\\",\\\"editor.selectionBackground\\\":\\\"#689d6a40\\\",\\\"editor.selectionHighlightBackground\\\":\\\"#a8998420\\\",\\\"editor.hoverHighlightBackground\\\":\\\"#689d6a50\\\",\\\"editorLink.activeForeground\\\":\\\"#ebdbb2\\\",\\\"editor.findMatchBackground\\\":\\\"#83a59870\\\",\\\"editor.findMatchHighlightBackground\\\":\\\"#fe801930\\\",\\\"editor.findRangeHighlightBackground\\\":\\\"#83a59870\\\",\\\"editor.lineHighlightBackground\\\":\\\"#3c383660\\\",\\\"editor.lineHighlightBorder\\\":\\\"#3c383600\\\",\\\"editorWhitespace.foreground\\\":\\\"#a8998420\\\",\\\"editorIndentGuide.background\\\":\\\"#a8998420\\\",\\\"editorIndentGuide.activeBackground\\\":\\\"#a8998450\\\",\\\"editorRuler.foreground\\\":\\\"#a8998440\\\",\\\"editorCodeLens.foreground\\\":\\\"#a8998490\\\",\\\"editorBracketMatch.border\\\":\\\"#1d202100\\\",\\\"editorBracketMatch.background\\\":\\\"#92837480\\\",\\\"editorHoverWidget.background\\\":\\\"#1d2021\\\",\\\"editorHoverWidget.border\\\":\\\"#3c3836\\\",\\\"editorOverviewRuler.border\\\":\\\"#1d202100\\\",\\\"editorOverviewRuler.findMatchForeground\\\":\\\"#bdae93\\\",\\\"editorOverviewRuler.rangeHighlightForeground\\\":\\\"#bdae93\\\",\\\"editorOverviewRuler.selectionHighlightForeground\\\":\\\"#665c54\\\",\\\"editorOverviewRuler.wordHighlightForeground\\\":\\\"#665c54\\\",\\\"editorOverviewRuler.wordHighlightStrongForeground\\\":\\\"#665c54\\\",\\\"editorOverviewRuler.modifiedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.addedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.deletedForeground\\\":\\\"#83a598\\\",\\\"editorOverviewRuler.errorForeground\\\":\\\"#fb4934\\\",\\\"editorOverviewRuler.warningForeground\\\":\\\"#d79921\\\",\\\"editorOverviewRuler.infoForeground\\\":\\\"#d3869b\\\",\\\"editorGutter.background\\\":\\\"#1d202100\\\",\\\"editorGutter.modifiedBackground\\\":\\\"#83a598\\\",\\\"editorGutter.addedBackground\\\":\\\"#b8bb26\\\",\\\"editorGutter.deletedBackground\\\":\\\"#fb4934\\\",\\\"editorError.foreground\\\":\\\"#cc241d\\\",\\\"editorWarning.foreground\\\":\\\"#d79921\\\",\\\"editorInfo.foreground\\\":\\\"#458588\\\",\\\"diffEditor.insertedTextBackground\\\":\\\"#b8bb2630\\\",\\\"diffEditor.removedTextBackground\\\":\\\"#fb493430\\\",\\\"editorWidget.background\\\":\\\"#1d2021\\\",\\\"editorWidget.border\\\":\\\"#3c3836\\\",\\\"editorSuggestWidget.background\\\":\\\"#1d2021\\\",\\\"editorSuggestWidget.foreground\\\":\\\"#ebdbb2\\\",\\\"editorSuggestWidget.highlightForeground\\\":\\\"#689d6a\\\",\\\"editorSuggestWidget.selectedBackground\\\":\\\"#3c383660\\\",\\\"editorSuggestWidget.border\\\":\\\"#3c3836\\\",\\\"peekView.border\\\":\\\"#3c3836\\\",\\\"peekViewEditor.background\\\":\\\"#3c383650\\\",\\\"peekViewEditorGutter.background\\\":\\\"#3c383650\\\",\\\"peekViewEditor.matchHighlightBackground\\\":\\\"#ff0000\\\",\\\"peekViewResult.background\\\":\\\"#3c383650\\\",\\\"peekViewResult.fileForeground\\\":\\\"#ebdbb2\\\",\\\"peekViewResult.matchHighlightBackground\\\":\\\"#8ec07c30\\\",\\\"peekViewResult.selectionBackground\\\":\\\"#8ec07c30\\\",\\\"peekViewResult.selectionForeground\\\":\\\"#8ec07c30\\\",\\\"peekViewTitle.background\\\":\\\"#3c383650\\\",\\\"peekViewTitleDescription.foreground\\\":\\\"#bdae93\\\",\\\"peekViewTitleLabel.foreground\\\":\\\"#ebdbb2\\\",\\\"menu.separatorBackground\\\":\\\"#3c3836\\\",\\\"merge.currentHeaderBackground\\\":\\\"#45858840\\\",\\\"merge.currentContentBackground\\\":\\\"#45858820\\\",\\\"merge.incomingHeaderBackground\\\":\\\"#689d6a40\\\",\\\"merge.incomingContentBackground\\\":\\\"#689d6a20\\\",\\\"merge.border\\\":\\\"#1d202100\\\",\\\"editorOverviewRuler.currentContentForeground\\\":\\\"#458588\\\",\\\"editorOverviewRuler.incomingContentForeground\\\":\\\"#689d6a\\\",\\\"editorOverviewRuler.commonContentForeground\\\":\\\"#928374\\\",\\\"panel.border\\\":\\\"#3c3836\\\",\\\"panelTitle.activeForeground\\\":\\\"#ebdbb2\\\",\\\"statusBar.background\\\":\\\"#1d2021\\\",\\\"statusBar.border\\\":\\\"#3c3836\\\",\\\"statusBar.foreground\\\":\\\"#ebdbb2\\\",\\\"statusBar.debuggingBackground\\\":\\\"#fe8019\\\",\\\"statusBar.debuggingForeground\\\":\\\"#1d2021\\\",\\\"statusBar.debuggingBorder\\\":\\\"#1d202100\\\",\\\"statusBar.noFolderBackground\\\":\\\"#1d2021\\\",\\\"statusBar.noFolderBorder\\\":\\\"#1d202100\\\",\\\"statusBar.prominentBackground\\\":\\\"#689d6a\\\",\\\"statusBar.prominentHoverBackground\\\":\\\"#689d6a70\\\",\\\"editorBracketHighlight.foreground1\\\":\\\"#ebdbb2\\\",\\\"editorBracketHighlight.foreground2\\\":\\\"#689d6a\\\",\\\"editorBracketHighlight.foreground3\\\":\\\"#458588\\\",\\\"editorBracketHighlight.foreground4\\\":\\\"#b16286\\\",\\\"editorBracketHighlight.foreground5\\\":\\\"#fe8019\\\",\\\"editorBracketHighlight.foreground6\\\":\\\"#fabd2f\\\",\\\"terminal.ansiBlack\\\":\\\"#3c3836\\\",\\\"terminal.ansiBrightBlack\\\":\\\"#928374\\\",\\\"terminal.ansiRed\\\":\\\"#cc241d\\\",\\\"terminal.ansiBrightRed\\\":\\\"#fb4934\\\",\\\"terminal.ansiGreen\\\":\\\"#98971a\\\",\\\"terminal.ansiBrightGreen\\\":\\\"#b8bb26\\\",\\\"terminal.ansiYellow\\\":\\\"#d79921\\\",\\\"terminal.ansiBrightYellow\\\":\\\"#fabd2f\\\",\\\"terminal.ansiBlue\\\":\\\"#458588\\\",\\\"terminal.ansiBrightBlue\\\":\\\"#83a598\\\",\\\"terminal.ansiMagenta\\\":\\\"#b16286\\\",\\\"terminal.ansiBrightMagenta\\\":\\\"#d3869b\\\",\\\"terminal.ansiCyan\\\":\\\"#689d6a\\\",\\\"terminal.ansiBrightCyan\\\":\\\"#8ec07c\\\",\\\"terminal.ansiWhite\\\":\\\"#a89984\\\",\\\"terminal.ansiBrightWhite\\\":\\\"#ebdbb2\\\",\\\"terminal.foreground\\\":\\\"#ebdbb2\\\",\\\"terminal.background\\\":\\\"#1d2021\\\",\\\"titleBar.activeBackground\\\":\\\"#1d2021\\\",\\\"titleBar.activeForeground\\\":\\\"#ebdbb2\\\",\\\"titleBar.inactiveBackground\\\":\\\"#1d2021\\\",\\\"gitDecoration.modifiedResourceForeground\\\":\\\"#d79921\\\",\\\"gitDecoration.deletedResourceForeground\\\":\\\"#cc241d\\\",\\\"gitDecoration.untrackedResourceForeground\\\":\\\"#98971a\\\",\\\"gitDecoration.ignoredResourceForeground\\\":\\\"#7c6f64\\\",\\\"gitDecoration.conflictingResourceForeground\\\":\\\"#b16286\\\",\\\"notification.background\\\":\\\"#1d2021\\\",\\\"notification.foreground\\\":\\\"#ebdbb2\\\",\\\"notification.buttonBackground\\\":\\\"#665c54\\\",\\\"notification.buttonHoverBackground\\\":\\\"#665c5450\\\",\\\"notification.buttonForeground\\\":\\\"#ebdbb2\\\",\\\"notification.infoBackground\\\":\\\"#83a598\\\",\\\"notification.infoForeground\\\":\\\"#1d2021\\\",\\\"notification.warningBackground\\\":\\\"#fabd2f\\\",\\\"notification.warningForeground\\\":\\\"#1d2021\\\",\\\"notification.errorBackground\\\":\\\"#fb4934\\\",\\\"notification.errorForeground\\\":\\\"#1d2021\\\",\\\"extensionButton.prominentBackground\\\":\\\"#b8bb2680\\\",\\\"extensionButton.prominentHoverBackground\\\":\\\"#b8bb2630\\\",\\\"textLink.foreground\\\":\\\"#83a598\\\",\\\"textLink.activeForeground\\\":\\\"#458588\\\",\\\"debugToolBar.background\\\":\\\"#1d2021\\\",\\\"notificationsErrorIcon.foreground\\\":\\\"#fb4934\\\",\\\"notificationsWarningIcon.foreground\\\":\\\"#fabd2f\\\",\\\"notificationsInfoIcon.foreground\\\":\\\"#83a598\\\",\\\"symbolIcon.colorForeground\\\":\\\"#ebdbb2\\\",\\\"symbolIcon.snippetForeground\\\":\\\"#ebdbb2\\\",\\\"symbolIcon.fieldForeground\\\":\\\"#ebdbb2\\\",\\\"symbolIcon.fileForeground\\\":\\\"#ebdbb2\\\",\\\"symbolIcon.folderForeground\\\":\\\"#ebdbb2\\\",\\\"symbolIcon.textForeground\\\":\\\"#ebdbb2\\\",\\\"symbolIcon.unitForeground\\\":\\\"#ebdbb2\\\",\\\"symbolIcon.keywordForeground\\\":\\\"#fb4934\\\",\\\"symbolIcon.operatorForeground\\\":\\\"#fe8019\\\",\\\"symbolIcon.classForeground\\\":\\\"#fabd2f\\\",\\\"symbolIcon.eventForeground\\\":\\\"#fabd2f\\\",\\\"symbolIcon.interfaceForeground\\\":\\\"#fabd2f\\\",\\\"symbolIcon.structForeground\\\":\\\"#fabd2f\\\",\\\"symbolIcon.functionForeground\\\":\\\"#b8bb26\\\",\\\"symbolIcon.keyForeground\\\":\\\"#b8bb26\\\",\\\"symbolIcon.methodForeground\\\":\\\"#b8bb26\\\",\\\"symbolIcon.stringForeground\\\":\\\"#b8bb26\\\",\\\"symbolIcon.constantForeground\\\":\\\"#8ec07c\\\",\\\"symbolIcon.enumeratorMemberForeground\\\":\\\"#8ec07c\\\",\\\"symbolIcon.nullForeground\\\":\\\"#8ec07c\\\",\\\"symbolIcon.propertyForeground\\\":\\\"#8ec07c\\\",\\\"symbolIcon.typeParameterForeground\\\":\\\"#8ec07c\\\",\\\"symbolIcon.arrayForeground\\\":\\\"#83a598\\\",\\\"symbolIcon.referenceForeground\\\":\\\"#83a598\\\",\\\"symbolIcon.variableForeground\\\":\\\"#83a598\\\",\\\"symbolIcon.booleanForeground\\\":\\\"#d3869b\\\",\\\"symbolIcon.constructorForeground\\\":\\\"#d3869b\\\",\\\"symbolIcon.enumeratorForeground\\\":\\\"#d3869b\\\",\\\"symbolIcon.moduleForeground\\\":\\\"#d3869b\\\",\\\"symbolIcon.namespaceForeground\\\":\\\"#d3869b\\\",\\\"symbolIcon.numberForeground\\\":\\\"#d3869b\\\",\\\"symbolIcon.objectForeground\\\":\\\"#d3869b\\\",\\\"symbolIcon.packageForeground\\\":\\\"#d3869b\\\"},\\\"watch\\\":false}\",\"workbench.panel.pinnedPanels\":\"[{\\\"id\\\":\\\"workbench.panel.markers\\\",\\\"pinned\\\":false,\\\"visible\\\":true,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.panel.output\\\",\\\"pinned\\\":false,\\\"visible\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"workbench.panel.repl\\\",\\\"pinned\\\":false,\\\"visible\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"workbench.views.service.panel.43776646-dfad-461d-a951-31758ad40c79\\\",\\\"pinned\\\":true},{\\\"id\\\":\\\"workbench.view.extension.gitlensPanel\\\",\\\"pinned\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"workbench.panel.testResults\\\",\\\"pinned\\\":true,\\\"visible\\\":false,\\\"order\\\":3},{\\\"id\\\":\\\"~remote.forwardedPortsContainer\\\",\\\"pinned\\\":false,\\\"visible\\\":true,\\\"order\\\":5},{\\\"id\\\":\\\"workbench.panel.comments\\\",\\\"pinned\\\":true,\\\"visible\\\":true,\\\"order\\\":10},{\\\"id\\\":\\\"refactorPreview\\\",\\\"pinned\\\":true,\\\"visible\\\":false}]\",\"commandPalette.mru.cache\":\"{\\\"usesLRU\\\":true,\\\"entries\\\":[{\\\"key\\\":\\\"workbench.action.toggleKeybindingsLog\\\",\\\"value\\\":3},{\\\"key\\\":\\\"workbench.action.logStorage\\\",\\\"value\\\":6},{\\\"key\\\":\\\"workbench.action.installCommandLine\\\",\\\"value\\\":7},{\\\"key\\\":\\\"editor.action.startFindReplaceAction\\\",\\\"value\\\":18},{\\\"key\\\":\\\"search.action.collapseSearchResults\\\",\\\"value\\\":66},{\\\"key\\\":\\\"workbench.action.toggleZenMode\\\",\\\"value\\\":69},{\\\"key\\\":\\\"editor.action.insertCursorAtEndOfEachLineSelected\\\",\\\"value\\\":71},{\\\"key\\\":\\\"editor.action.toggleMinimap\\\",\\\"value\\\":73},{\\\"key\\\":\\\"editor.foldLevel1\\\",\\\"value\\\":96},{\\\"key\\\":\\\"copyRelativeFilePath\\\",\\\"value\\\":100},{\\\"key\\\":\\\"typescript.selectTypeScriptVersion\\\",\\\"value\\\":103},{\\\"key\\\":\\\"workbench.action.openDefaultKeybindingsFile\\\",\\\"value\\\":111},{\\\"key\\\":\\\"typescript.restartTsServer\\\",\\\"value\\\":114},{\\\"key\\\":\\\"workbench.files.action.collapseExplorerFolders\\\",\\\"value\\\":115},{\\\"key\\\":\\\"gitlens.graph.switchToEditorLayout\\\",\\\"value\\\":117},{\\\"key\\\":\\\"eslint.executeAutofix\\\",\\\"value\\\":118},{\\\"key\\\":\\\"workbench.action.files.saveWithoutFormatting\\\",\\\"value\\\":119},{\\\"key\\\":\\\"workbench.action.editor.changeLanguageMode\\\",\\\"value\\\":121},{\\\"key\\\":\\\"workbench.action.reloadWindow\\\",\\\"value\\\":122},{\\\"key\\\":\\\"welcome.showNewFileEntries\\\",\\\"value\\\":123},{\\\"key\\\":\\\"workbench.files.action.refreshFilesExplorer\\\",\\\"value\\\":124},{\\\"key\\\":\\\"editor.foldLevel2\\\",\\\"value\\\":125},{\\\"key\\\":\\\"editor.unfold\\\",\\\"value\\\":127},{\\\"key\\\":\\\"editor.unfoldAll\\\",\\\"value\\\":128},{\\\"key\\\":\\\"workbench.files.action.focusFilesExplorer\\\",\\\"value\\\":129},{\\\"key\\\":\\\"workbench.files.action.showActiveFileInExplorer\\\",\\\"value\\\":130},{\\\"key\\\":\\\"workbench.files.action.focusOpenEditorsView\\\",\\\"value\\\":131},{\\\"key\\\":\\\"workbench.action.showMultipleEditorTabs\\\",\\\"value\\\":132},{\\\"key\\\":\\\"workbench.action.showEditorTab\\\",\\\"value\\\":133},{\\\"key\\\":\\\"workbench.action.openWorkspaceSettingsFile\\\",\\\"value\\\":134},{\\\"key\\\":\\\"editor.action.formatDocument\\\",\\\"value\\\":135},{\\\"key\\\":\\\"workbench.action.openRawDefaultSettings\\\",\\\"value\\\":136},{\\\"key\\\":\\\"workbench.action.openSettingsJson\\\",\\\"value\\\":137},{\\\"key\\\":\\\"gl.authenticate\\\",\\\"value\\\":139},{\\\"key\\\":\\\"gl.openProjectPage\\\",\\\"value\\\":140},{\\\"key\\\":\\\"extension.viewMR\\\",\\\"value\\\":141},{\\\"key\\\":\\\"workbench.action.resetViewLocations\\\",\\\"value\\\":142}]}\",\"commandPalette.mru.counter\":\"143\",\"workbench.welcomePage.walkthroughMetadata\":\"[[\\\"vscode.typescript-language-features#nodejsWelcome\\\",{\\\"firstSeen\\\":1667909635199,\\\"stepIDs\\\":[\\\"walkthroughs.nodejsWelcome.downloadNode.forMacOrWindows\\\",\\\"walkthroughs.nodejsWelcome.downloadNode.forLinux\\\",\\\"walkthroughs.nodejsWelcome.makeJsFile\\\",\\\"walkthroughs.nodejsWelcome.debugJsFile\\\",\\\"walkthroughs.nodejsWelcome.learnMoreAboutJs\\\"],\\\"manaullyOpened\\\":false}],[\\\"eamodio.gitlens#gitlens.welcome\\\",{\\\"firstSeen\\\":1668096717818,\\\"stepIDs\\\":[\\\"gitlens.welcome.tutorial\\\",\\\"gitlens.welcome.experience\\\",\\\"gitlens.welcome.settings\\\",\\\"gitlens.welcome.currentLineBlame\\\",\\\"gitlens.welcome.gitCodeLens\\\",\\\"gitlens.welcome.revisionHistory\\\",\\\"gitlens.welcome.fileAnnotations\\\",\\\"gitlens.welcome.gitSideBarViews\\\",\\\"gitlens.welcome.hostingServiceIntegrations\\\",\\\"gitlens.welcome.gitCommandPalette\\\",\\\"gitlens.welcome.interactiveRebaseEditor\\\",\\\"gitlens.welcome.terminal\\\",\\\"gitlens.welcome.plus\\\"],\\\"manaullyOpened\\\":false}],[\\\"eamodio.gitlens#gitlens.plus\\\",{\\\"firstSeen\\\":1668096717818,\\\"stepIDs\\\":[\\\"gitlens.plus.intro\\\",\\\"gitlens.plus.commitGraph\\\",\\\"gitlens.plus.visualFileHistory\\\",\\\"gitlens.plus.worktrees\\\",\\\"gitlens.plus.richIntegrations\\\",\\\"gitlens.plus.tryNow\\\",\\\"gitlens.plus.trial\\\",\\\"gitlens.plus.trial.extend\\\",\\\"gitlens.plus.trial.upgrade\\\"],\\\"manaullyOpened\\\":false}],[\\\"nrwl.angular-console#nxConsole\\\",{\\\"firstSeen\\\":1675942667329,\\\"stepIDs\\\":[\\\"nxConsole.generate\\\",\\\"nxConsole.run\\\",\\\"nxConsole.commonNxCommands\\\",\\\"nxConsole.projects\\\",\\\"nxConsole.streamlining\\\"],\\\"manaullyOpened\\\":false}],[\\\"ms-azuretools.vscode-docker#dockerStart\\\",{\\\"firstSeen\\\":1675942738650,\\\"stepIDs\\\":[\\\"ms-azuretools.vscode-docker#dockerStart#openFolder\\\",\\\"ms-azuretools.vscode-docker#dockerStart#openFolderMac\\\",\\\"ms-azuretools.vscode-docker#dockerStart#scaffold\\\",\\\"ms-azuretools.vscode-docker#dockerStart#buildImage\\\",\\\"ms-azuretools.vscode-docker#dockerStart#runContainer\\\",\\\"ms-azuretools.vscode-docker#dockerStart#dockerExplorer\\\",\\\"ms-azuretools.vscode-docker#dockerStart#pushImage\\\",\\\"ms-azuretools.vscode-docker#dockerStart#azDeploy\\\",\\\"ms-azuretools.vscode-docker#dockerStart#learn\\\"],\\\"manaullyOpened\\\":true}],[\\\"vscode.typescript-language-features#tempNodejsWelcome\\\",{\\\"firstSeen\\\":1683716637300,\\\"stepIDs\\\":[],\\\"manaullyOpened\\\":false}],[\\\"ms-vscode.remote-repositories#remoteRepositoriesWalkthrough\\\",{\\\"firstSeen\\\":1701427391579,\\\"stepIDs\\\":[\\\"editCommitRepo\\\",\\\"createGitHubPullRequest\\\",\\\"continueOn\\\",\\\"openRepo\\\",\\\"remoteIndicator\\\"],\\\"manaullyOpened\\\":false}]]\",\"terminal.integrated.showTerminalConfigPrompt\":\"false\",\"extensionsAssistant/fileExtensionsSuggestionIgnore\":\"[\\\"local\\\"]\",\"memento/workbench.editor.keybindings\":\"{\\\"searchHistory\\\":[\\\"stop\\\",\\\"terminal\\\",\\\"insert\\\",\\\"fold\\\"]}\",\"cpp.1.lastSessionDate\":\"Sat Dec 02 2023\",\"cpp.1.sessionCount\":\"247\",\"java.2.lastSessionDate\":\"Sat Dec 02 2023\",\"java.2.sessionCount\":\"247\",\"javascript.1.lastSessionDate\":\"Thu Mar 16 2023\",\"javascript.1.sessionCount\":\"80\",\"typescript.1.lastSessionDate\":\"Wed Dec 21 2022\",\"typescript.1.sessionCount\":\"30\",\"nps/lastSessionDate\":\"Wed Nov 23 2022\",\"nps/sessionCount\":\"11\",\"workbench.scm.views.state.hidden\":\"[{\\\"id\\\":\\\"workbench.scm.repositories\\\",\\\"isHidden\\\":false,\\\"order\\\":0},{\\\"id\\\":\\\"workbench.scm\\\",\\\"isHidden\\\":false,\\\"order\\\":1},{\\\"id\\\":\\\"gitlens.views.repositories\\\",\\\"isHidden\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"gitlens.views.commits\\\",\\\"isHidden\\\":true,\\\"order\\\":4},{\\\"id\\\":\\\"gitlens.views.commitDetails\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory\\\",\\\"isHidden\\\":true},{\\\"id\\\":\\\"gitlens.views.branches\\\",\\\"isHidden\\\":false,\\\"order\\\":3},{\\\"id\\\":\\\"gitlens.views.remotes\\\",\\\"isHidden\\\":true,\\\"order\\\":5},{\\\"id\\\":\\\"gitlens.views.stashes\\\",\\\"isHidden\\\":false,\\\"order\\\":6},{\\\"id\\\":\\\"gitlens.views.tags\\\",\\\"isHidden\\\":true,\\\"order\\\":7},{\\\"id\\\":\\\"gitlens.views.worktrees\\\",\\\"isHidden\\\":true,\\\"order\\\":8},{\\\"id\\\":\\\"gitlens.views.contributors\\\",\\\"isHidden\\\":true,\\\"order\\\":9},{\\\"id\\\":\\\"gitlens.views.searchAndCompare\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.scm.sync\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.gitlensPanel.state.hidden\":\"[{\\\"id\\\":\\\"gitlens.views.timeline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.graph\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.graphDetails\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.gitlens.state.hidden\":\"[{\\\"id\\\":\\\"gitlens.views.home\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.contributors\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.workspaces\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.account\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.drafts\\\",\\\"isHidden\\\":false}]\",\"typescript.1.editedCount\":\"10\",\"typescript.1.editedDate\":\"Tue Dec 20 2022\",\"nps/isCandidate\":\"false\",\"nps/skipVersion\":\"1.73.1\",\"snippets.usageTimestamps\":\"[[\\\"berkekaragoz.code-snippets/console.log a Variable Shorthand\\\",1669714278345],[\\\"random/0.6142766358581331\\\",1669715794856],[\\\"snippets/typescript.code-snippets/Property getter\\\",1671709589692],[\\\"snippets/typescript.code-snippets/Property setter\\\",1672058039802],[\\\"snippets/typescript.code-snippets/Triple-slash reference\\\",1674551669367],[\\\"snippets/typescript.code-snippets/Log error to console\\\",1674725973009],[\\\"snippets/typescript.code-snippets/While Statement\\\",1676354543490],[\\\"snippets/typescript.code-snippets/Switch Statement\\\",1678347507267],[\\\"berkekaragoz.code-snippets/eslint-disable-line\\\",1680708134652],[\\\"berkekaragoz.code-snippets/eslint-next-disable-line\\\",1680711952066],[\\\"snippets/typescript.code-snippets/Class Definition\\\",1691151859325],[\\\"snippets/typescript.code-snippets/For-Each Loop using =>\\\",1699381517297],[\\\"snippets/typescript.code-snippets/Public Method Definition\\\",1699636808872],[\\\"snippets/typescript.code-snippets/Region End\\\",1701194464066],[\\\"berkekaragoz.code-snippets/console.log variable\\\",1701457108414]]\",\"expandSuggestionDocs\":\"true\",\"fileBasedRecommendations/promptedFileExtensions\":\"[\\\"scala\\\"]\",\"typescript.1.isCandidate\":\"false\",\"typescript.1.skipVersion\":\"1.74.1\",\"refactorPreview.hidden\":\"[{\\\"id\\\":\\\"refactorPreview\\\",\\\"isHidden\\\":false}]\",\"javascript.1.editedCount\":\"10\",\"javascript.1.editedDate\":\"Fri Feb 24 2023\",\"workbench.view.extension.nx-console.state.hidden\":\"[{\\\"id\\\":\\\"nxConsole.views.welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"nxProjects\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"nxCloud\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"nxRunTarget\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"nxCommands\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"nxHelpAndFeedback\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"nxConsole.views.angular-welcome\\\",\\\"isHidden\\\":false}]\",\"fileBasedRecommendations/promptedRecommendations\":\"{\\\"dockerfile\\\":[\\\"ms-azuretools.vscode-docker\\\"]}\",\"workbench.view.extension.dockerView.state.hidden\":\"[{\\\"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}]\",\"github-BerkeKaragoz\":\"[{\\\"id\\\":\\\"eamodio.gitlens\\\",\\\"name\\\":\\\"GitLens — Git supercharged\\\",\\\"allowed\\\":true},{\\\"id\\\":\\\"ms-vsliveshare.vsliveshare\\\",\\\"name\\\":\\\"Live Share\\\",\\\"allowed\\\":true}]\",\"javascript.1.isCandidate\":\"false\",\"javascript.1.skipVersion\":\"1.76.1\",\"workbench.view.extension.github-pull-requests.state.hidden\":\"[{\\\"id\\\":\\\"github:login\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"pr:github\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"issues:github\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.github-pull-request.state.hidden\":\"[{\\\"id\\\":\\\"github:createPullRequest\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:compareChanges\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"prStatus:github\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:activePullRequest\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:activePullRequest:welcome\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:createPullRequestWebview\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:compareChangesFiles\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"github:compareChangesCommits\\\",\\\"isHidden\\\":false}]\",\"csharp.1.lastSessionDate\":\"Sat Dec 02 2023\",\"csharp.1.sessionCount\":\"150\",\"themeUpdatedNotificationShown\":\"true\",\"workbench.view.extension.thunder-client.state.hidden\":\"[{\\\"id\\\":\\\"thunder-client-sidebar\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.gitlensInspect.state.hidden\":\"[{\\\"id\\\":\\\"gitlens.views.commitDetails\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.lineHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.fileHistory\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.timeline\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"gitlens.views.searchAndCompare\\\",\\\"isHidden\\\":false}]\",\"workbench.auxiliarybar.pinnedPanels\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"pinned\\\":true,\\\"order\\\":3},{\\\"id\\\":\\\"workbench.view.search\\\",\\\"pinned\\\":true,\\\"order\\\":1}]\",\"views.customizations\":\"{\\\"viewContainerLocations\\\":{\\\"terminal\\\":2,\\\"workbench.view.search\\\":2,\\\"workbench.views.service.panel.43776646-dfad-461d-a951-31758ad40c79\\\":1},\\\"viewLocations\\\":{\\\"workbench.explorer.openEditorsView\\\":\\\"workbench.views.service.panel.43776646-dfad-461d-a951-31758ad40c79\\\"},\\\"viewContainerBadgeEnablementStates\\\":{}}\",\"tabs-list-width-vertical\":\"46\",\"tabs-list-width-horizontal\":\"46\",\"workbench.view.extension.liveshare.state.hidden\":\"[{\\\"id\\\":\\\"liveshare.session\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.help\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"liveshare.devtools\\\",\\\"isHidden\\\":false}]\",\"terminal.hidden\":\"[{\\\"id\\\":\\\"terminal\\\",\\\"isHidden\\\":false,\\\"order\\\":0},{\\\"id\\\":\\\"outline\\\",\\\"isHidden\\\":true,\\\"order\\\":1},{\\\"id\\\":\\\"timeline\\\",\\\"isHidden\\\":true,\\\"order\\\":2},{\\\"id\\\":\\\"npm\\\",\\\"isHidden\\\":true,\\\"order\\\":3}]\",\"workbench.view.extension.gitlab-workflow.state.hidden\":\"[{\\\"id\\\":\\\"issuesAndMrs\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"currentBranchInfo\\\",\\\"isHidden\\\":true}]\",\"gitlab-https://gitlab.com (b.karagoz)\":\"[{\\\"id\\\":\\\"gitlab.gitlab-workflow\\\",\\\"name\\\":\\\"GitLab Workflow\\\",\\\"allowed\\\":true}]\",\"~remote.forwardedPortsContainer.hidden\":\"[{\\\"id\\\":\\\"~remote.forwardedPorts\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.gitlab-duo.state.hidden\":\"[{\\\"id\\\":\\\"gl.chatView\\\",\\\"isHidden\\\":false}]\",\"workbench.view.extension.learn-vim-container.state.hidden\":\"[{\\\"id\\\":\\\"learn-vim\\\",\\\"isHidden\\\":false}]\",\"workbench.panel.markers.hidden\":\"[{\\\"id\\\":\\\"workbench.panel.markers.view\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":false}]\",\"workbench.view.remote.state.hidden\":\"[{\\\"id\\\":\\\"remoteHub.views.workspaceRepositories\\\",\\\"isHidden\\\":false}]\",\"http.linkProtectionTrustedDomains\":\"[\\\"https://gitlab.com\\\"]\",\"workbench.panel.repl.hidden\":\"[{\\\"id\\\":\\\"workbench.panel.repl.view\\\",\\\"isHidden\\\":false},{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":false}]\",\"workbench.views.service.panel.43776646-dfad-461d-a951-31758ad40c79.state.hidden\":\"[{\\\"id\\\":\\\"workbench.explorer.openEditorsView\\\",\\\"isHidden\\\":false}]\",\"userDataProfiles.state.hidden\":\"[{\\\"id\\\":\\\"workbench.views.profiles.export.preview\\\",\\\"isHidden\\\":false}]\"}}"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment