Last active
July 3, 2021 02:26
-
-
Save weirongxu/ef8d018ff0f704024c963b3522bcdead to your computer and use it in GitHub Desktop.
Visual Studio Code Settings Sync Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2021-07-03T02:26:55.928Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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": "b853c3c3-16a1-4448-ac4d-d233a4a88d11", | |
"publisherId": "ifaxity.onedark", | |
"publisherDisplayName": "ifaxity" | |
}, | |
"name": "onedark", | |
"publisher": "ifaxity", | |
"version": "1.5.13" | |
}, | |
{ | |
"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.65.7" | |
}, | |
{ | |
"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.65.7" | |
}, | |
{ | |
"metadata": { | |
"id": "f0c5397b-d357-4197-99f0-cb4202f22818", | |
"publisherId": "ms-vscode-remote.remote-wsl", | |
"publisherDisplayName": "ms-vscode-remote" | |
}, | |
"name": "remote-wsl", | |
"publisher": "ms-vscode-remote", | |
"version": "0.56.5" | |
}, | |
{ | |
"metadata": { | |
"id": "9764fb1f-aa45-4e65-a18e-705b3b00761c", | |
"publisherId": "tinkertrain.theme-panda", | |
"publisherDisplayName": "tinkertrain" | |
}, | |
"name": "theme-panda", | |
"publisher": "tinkertrain", | |
"version": "1.3.0" | |
}, | |
{ | |
"metadata": { | |
"id": "e310ade6-fe29-42da-a447-3fe493080a97", | |
"publisherId": "kleber-swf.unity-code-snippets", | |
"publisherDisplayName": "kleber-swf" | |
}, | |
"name": "unity-code-snippets", | |
"publisher": "kleber-swf", | |
"version": "1.3.0" | |
}, | |
{ | |
"metadata": { | |
"id": "d96e79c6-8b25-4be3-8545-0e0ecefcae03", | |
"publisherId": "vscodevim.vim", | |
"publisherDisplayName": "vscodevim" | |
}, | |
"name": "vim", | |
"publisher": "vscodevim", | |
"version": "1.21.3" | |
}, | |
{ | |
"metadata": { | |
"id": "ce49f801-147f-49b8-9b1b-a8ee3dff91ef", | |
"publisherId": "slevesque.vscode-autohotkey", | |
"publisherDisplayName": "slevesque" | |
}, | |
"name": "vscode-autohotkey", | |
"publisher": "slevesque", | |
"version": "0.2.2" | |
}, | |
{ | |
"metadata": { | |
"id": "708cfcd8-e0c6-49ca-9af6-b27a342d247b", | |
"publisherId": "wingrunr21.vscode-ruby", | |
"publisherDisplayName": "wingrunr21" | |
}, | |
"name": "vscode-ruby", | |
"publisher": "wingrunr21", | |
"version": "0.28.0" | |
}, | |
{ | |
"metadata": { | |
"id": "ec2271c0-9d6d-44c5-93e5-7e8cda744f21", | |
"publisherId": "rokoroku.vscode-theme-darcula", | |
"publisherDisplayName": "rokoroku" | |
}, | |
"name": "vscode-theme-darcula", | |
"publisher": "rokoroku", | |
"version": "1.2.3" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"initialized":true} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
// move | |
{ | |
"key": "alt+h", | |
"command": "extension.vim_left", | |
"when": "editorTextFocus && vim.active && vim.mode == 'Insert'" | |
}, | |
{ | |
"key": "alt+j", | |
"command": "extension.vim_down", | |
"when": "editorTextFocus && vim.active && vim.mode == 'Insert'" | |
}, | |
{ | |
"key": "alt+k", | |
"command": "extension.vim_up", | |
"when": "editorTextFocus && vim.active && vim.mode == 'Insert'" | |
}, | |
{ | |
"key": "alt+l", | |
"command": "extension.vim_right", | |
"when": "editorTextFocus && vim.active && vim.mode == 'Insert'" | |
}, | |
{ | |
"key": "alt+k", | |
"command": "editor.action.moveLinesUpAction", | |
"when": "editorTextFocus && vim.active && !editorReadonly && !inDebugRepl && vim.mode != 'Insert'" | |
}, | |
{ | |
"key": "alt+j", | |
"command": "editor.action.moveLinesDownAction", | |
"when": "editorTextFocus && vim.active && !editorReadonly && !inDebugRepl && vim.mode != 'Insert'" | |
}, | |
{ | |
"key": "ctrl+e", | |
"command": "-workbench.action.quickOpen" | |
}, | |
// explorer | |
{ | |
"key": "r", | |
"command": "renameFile", | |
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus" | |
}, | |
{ | |
"key": "a", | |
"command": "explorer.newFile", | |
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus" | |
}, | |
{ | |
"key": "shift+a", | |
"command": "explorer.newFolder", | |
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus" | |
}, | |
{ | |
"key": "ctrl+l", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus" | |
}, | |
{ | |
"key": "ctrl+h", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "explorerViewletVisible && filesExplorerFocus && !inputFocus" | |
}, | |
// terminal | |
{ | |
"key": "ctrl+t", | |
"command": "workbench.action.terminal.new", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+[", | |
"command": "workbench.action.terminal.focusPrevious", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+]", | |
"command": "workbench.action.terminal.focusNext", | |
"when": "terminalFocus" | |
}, | |
{ | |
"key": "ctrl+o", | |
"command": "workbench.action.terminal.toggleTerminal", | |
"when": "terminalFocus" | |
}, | |
// list | |
{ | |
"key": "ctrl+j", | |
"command": "workbench.action.quickOpenSelectNext", | |
"when": "inQuickOpen" | |
}, | |
{ | |
"key": "ctrl+k", | |
"command": "workbench.action.quickOpenSelectPrevious", | |
"when": "inQuickOpen" | |
}, | |
{ | |
"key": "ctrl+j", | |
"command": "selectNextSuggestion", | |
"when": "editorTextFocus && suggestWidgetVisible" | |
}, | |
{ | |
"key": "ctrl+k", | |
"command": "selectPrevSuggestion", | |
"when": "editorTextFocus && suggestWidgetVisible" | |
}, | |
{ | |
"key": "ctrl+h", | |
"command": "list.collapse", | |
"when": "listFocus && !inputFocus" | |
}, | |
{ | |
"key": "ctrl+l", | |
"command": "list.expand", | |
"when": "listFocus && !inputFocus" | |
}, | |
{ | |
"key": "ctrl+j", | |
"command": "list.focusDown", | |
"when": "listFocus && !inputFocus" | |
}, | |
{ | |
"key": "ctrl+k", | |
"command": "list.focusUp", | |
"when": "listFocus && !inputFocus" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Empty |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sync.gist": "ef8d018ff0f704024c963b3522bcdead", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.forceDownload": false, | |
"sync.quietSync": false, | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"vim.easymotion": true, | |
"vim.enableNeovim": false, | |
"vim.hlsearch": true, | |
"vim.leader": "space", | |
"vim.visualstar": true, | |
"vim.useSystemClipboard": true, | |
"vim.statusBarColorControl": true, | |
"vim.statusBarColors.normal": "#5F9C9B", | |
"vim.statusBarColors.insert": "#BF515A", | |
"vim.statusBarColors.visual": "#A45E9D", | |
"vim.statusBarColors.visualline": "#A45E9D", | |
"vim.statusBarColors.visualblock": "#839E5C", | |
"vim.statusBarColors.replace": "#D08750", | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#5F9C9B", | |
"statusBar.noFolderBackground": "#5F9C9B", | |
"statusBar.debuggingBackground": "#5F9C9B" | |
}, | |
"vim.visualModeKeyBindings": [ | |
// text-obj | |
{ | |
"before": [ | |
"i", | |
"," | |
], | |
"after": [ | |
"i", | |
"a" | |
] | |
} | |
], | |
"vim.insertModeKeyBindings": [ | |
// suggestion | |
{ | |
"before": [ | |
"C-l" | |
], | |
"commands": [ | |
"editor.action.triggerSuggest" | |
] | |
}, | |
// move | |
{ | |
"before": [ | |
"C-e" | |
], | |
"after": [ | |
"C-o", | |
"A" | |
] | |
}, | |
{ | |
"before": [ | |
"C-a" | |
], | |
"after": [ | |
"C-o", | |
"I" | |
] | |
} | |
], | |
"vim.normalModeKeyBindings": [ | |
// tabs | |
{ | |
"before": [ | |
"H" | |
], | |
"commands": [ | |
"workbench.action.previousEditorInGroup" | |
] | |
}, | |
{ | |
"before": [ | |
"L" | |
], | |
"commands": [ | |
"workbench.action.nextEditorInGroup" | |
] | |
}, | |
// windows | |
{ | |
"before": [ | |
"C-h" | |
], | |
"after": [ | |
"C-w", | |
"h" | |
] | |
}, | |
{ | |
"before": [ | |
"C-j" | |
], | |
"after": [ | |
"C-w", | |
"j" | |
] | |
}, | |
{ | |
"before": [ | |
"C-k" | |
], | |
"after": [ | |
"C-w", | |
"k" | |
] | |
}, | |
{ | |
"before": [ | |
"C-l" | |
], | |
"after": [ | |
"C-w", | |
"l" | |
] | |
}, | |
// explorer | |
{ | |
"before": [ | |
"leader", | |
"e", | |
"e" | |
], | |
"commands": [ | |
"workbench.files.action.focusFilesExplorer" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"e", | |
"r" | |
], | |
"commands": [ | |
"workbench.files.action.showActiveFileInExplorer" | |
] | |
}, | |
// document | |
{ | |
"before": [ | |
"K" | |
], | |
"commands": [ | |
"editor.action.showHover" | |
] | |
}, | |
// format | |
{ | |
"before": [ | |
"leader", | |
"f", | |
"f" | |
], | |
"commands": [ | |
"editor.action.formatDocument" | |
] | |
}, | |
// rename | |
{ | |
"before": [ | |
"leader", | |
"r", | |
"n" | |
], | |
"commands": [ | |
"editor.action.rename", | |
] | |
}, | |
// goto | |
{ | |
"before": [ | |
"g", | |
"r", | |
], | |
"commands": [ | |
"editor.action.goToReferences" | |
] | |
}, | |
{ | |
"before": [ | |
"g", | |
"i", | |
], | |
"commands": [ | |
"editor.action.goToImplementation" | |
] | |
}, | |
{ | |
"before": [ | |
"g", | |
"y", | |
], | |
"commands": [ | |
"editor.action.goToTypeDefinition" | |
] | |
}, | |
// fix | |
{ | |
"before": [ | |
"leader", | |
"f", | |
"x" | |
], | |
"commands": [ | |
"editor.action.autoFix" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"f", | |
"i" | |
], | |
"commands": [ | |
"editor.action.organizeImports" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"." | |
], | |
"commands": [ | |
"editor.action.quickFix" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"enter" | |
], | |
"commands": [ | |
"editor.action.quickFix" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"'" | |
], | |
"commands": [ | |
"editor.action.refactor" | |
] | |
}, | |
// marker | |
{ | |
"before": [ | |
"[", | |
"d" | |
], | |
"commands": [ | |
"editor.action.marker.prev" | |
] | |
}, | |
{ | |
"before": [ | |
"]", | |
"d" | |
], | |
"commands": [ | |
"editor.action.marker.next" | |
] | |
}, | |
{ | |
"before": [ | |
"[", | |
"D" | |
], | |
"commands": [ | |
"editor.action.marker.prevInFiles" | |
] | |
}, | |
{ | |
"before": [ | |
"]", | |
"D" | |
], | |
"commands": [ | |
"editor.action.marker.nextInFiles" | |
] | |
}, | |
{ | |
"before": [ | |
"[", | |
"c" | |
], | |
"commands": [ | |
"workbench.action.editor.previousChange" | |
] | |
}, | |
{ | |
"before": [ | |
"]", | |
"c" | |
], | |
"commands": [ | |
"workbench.action.editor.nextChange" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"g", | |
"<" | |
], | |
"commands": [ | |
"git.stageSelectedRanges" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"g", | |
"<" | |
], | |
"commands": [ | |
"git.unstageSelectedRanges" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"g", | |
"=" | |
], | |
"commands": [ | |
"git.revertSelectedRanges" | |
] | |
}, | |
// terminal | |
{ | |
"before": [ | |
"leader", | |
"t", | |
"m" | |
], | |
"commands": [ | |
"workbench.action.terminal.focus" | |
] | |
} | |
], | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [ | |
"leader", | |
"s" | |
], | |
"commands": [ | |
"workbench.action.files.save" | |
] | |
} | |
], | |
"window.titleBarStyle": "custom", | |
"workbench.colorTheme": "Darcula", | |
"C_Cpp.autocomplete": "Disabled", | |
"C_Cpp.formatting": "Disabled", | |
"C_Cpp.errorSquiggles": "Disabled", | |
"C_Cpp.intelliSenseEngine": "Disabled", | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[less]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[ruby]": { | |
"editor.defaultFormatter": "rebornix.ruby" | |
}, | |
"pasteImage.path": "${currentFileDir}/assets/", | |
"pasteImage.namePrefix": "${currentFileNameWithoutExt}-", | |
"editor.cursorBlinking": "phase", | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
// "terminal.integrated.defaultProfile.linux": "fish", | |
"remote.SSH.remotePlatform": { | |
"raidou.net": "linux" | |
}, | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter.notebook.ipynb" | |
}, | |
"editor.inlineSuggest.enabled": true, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"ref":"e0a074d6-d3dc-4216-b37d-106531c3e496","content":"{\"version\":5,\"machineId\":\"a30886ae-0eae-498b-9097-6a9a97ecdf6f\",\"content\":\"[{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.bat\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.clojure\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.coffeescript\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.configuration-editing\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.cpp\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.csharp\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.css\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.css-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.debug-auto-launch\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.debug-server-ready\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.docker\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.emmet\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.extension-editing\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.fsharp\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.git\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.git-ui\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.github\\\"},\\\"version\\\":\\\"0.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.github-authentication\\\"},\\\"version\\\":\\\"0.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.go\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.groovy\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.grunt\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.gulp\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.handlebars\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.hlsl\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.html\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.html-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.image-preview\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ini\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.jake\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.java\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.javascript\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.json\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.json-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.less\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.log\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.lua\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.make\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.markdown-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.merge-conflict\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.microsoft-authentication\\\"},\\\"version\\\":\\\"0.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.js-debug\\\",\\\"uuid\\\":\\\"25629058-ddac-4e17-abba-74678e126c5d\\\"},\\\"version\\\":\\\"1.51.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.js-debug-companion\\\",\\\"uuid\\\":\\\"99cb0b7f-7354-4278-b8da-6cc79972169d\\\"},\\\"version\\\":\\\"1.0.8\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.node-debug\\\",\\\"uuid\\\":\\\"b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6\\\"},\\\"version\\\":\\\"1.44.14\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.node-debug2\\\",\\\"uuid\\\":\\\"36d19e17-7569-4841-a001-947eb18602b2\\\"},\\\"version\\\":\\\"1.42.5\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.references-view\\\",\\\"uuid\\\":\\\"dc489f46-520d-4556-ae85-1f9eab3c412d\\\"},\\\"version\\\":\\\"0.0.71\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.vscode-js-profile-table\\\",\\\"uuid\\\":\\\"7e52b41b-71ad-457b-ab7e-0620f1fc4feb\\\"},\\\"version\\\":\\\"0.0.11\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.npm\\\"},\\\"version\\\":\\\"1.0.1\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.objective-c\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.perl\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.php\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.php-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.powershell\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.pug\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.python\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.r\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.razor\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.ruby\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.rust\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.scss\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.search-result\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.shaderlab\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.shellscript\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.sql\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.swift\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-abyss\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-defaults\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-kimbie-dark\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-monokai\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-monokai-dimmed\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-quietlight\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-red\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.vscode-theme-seti\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-solarized-dark\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-solarized-light\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.theme-tomorrow-night-blue\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.typescript\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.typescript-language-features\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.vb\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.xml\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.yaml\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"apollographql.vscode-apollo\\\",\\\"uuid\\\":\\\"de44183f-5377-4ceb-ac15-79364a30070c\\\"},\\\"version\\\":\\\"1.17.1\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"castwide.solargraph\\\",\\\"uuid\\\":\\\"349e83e2-207c-4309-a8d2-dfa43f7ee0c9\\\"},\\\"version\\\":\\\"0.21.1\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"dbaeumer.vscode-eslint\\\",\\\"uuid\\\":\\\"583b2b34-2c1e-4634-8c0b-0b82e283ea3a\\\"},\\\"version\\\":\\\"2.1.14\\\",\\\"installed\\\":true,\\\"state\\\":{\\\"eslintAlwaysAllowExecution\\\":true}},{\\\"identifier\\\":{\\\"id\\\":\\\"esbenp.prettier-vscode\\\",\\\"uuid\\\":\\\"96fa4707-6983-4489-b7c5-d5ffdfdcce90\\\"},\\\"version\\\":\\\"5.8.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"felixfbecker.php-intellisense\\\",\\\"uuid\\\":\\\"5e69f001-f945-4c97-baf0-320d82a153b3\\\"},\\\"version\\\":\\\"2.3.14\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ifaxity.onedark\\\",\\\"uuid\\\":\\\"b853c3c3-16a1-4448-ac4d-d233a4a88d11\\\"},\\\"version\\\":\\\"1.5.11\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"jebbs.plantuml\\\",\\\"uuid\\\":\\\"d95cb424-7a5a-4e08-9698-107d6fd590cf\\\"},\\\"version\\\":\\\"2.13.17\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"jonsmithers.open-in-vim\\\",\\\"uuid\\\":\\\"710009d8-537a-4982-916d-07d9713bb996\\\"},\\\"version\\\":\\\"0.6.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"kleber-swf.unity-code-snippets\\\",\\\"uuid\\\":\\\"e310ade6-fe29-42da-a447-3fe493080a97\\\"},\\\"version\\\":\\\"1.3.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"llvm-vs-code-extensions.vscode-clangd\\\",\\\"uuid\\\":\\\"103154cb-b81d-4e1b-8281-c5f4fa563d37\\\"},\\\"version\\\":\\\"0.1.8\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-dotnettools.csharp\\\",\\\"uuid\\\":\\\"d0bfc4ab-1d3a-4487-8782-7cf6027b4fff\\\"},\\\"version\\\":\\\"1.23.6\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode-remote.remote-ssh\\\",\\\"uuid\\\":\\\"607fd052-be03-4363-b657-2bd62b83d28a\\\"},\\\"version\\\":\\\"0.56.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode-remote.remote-ssh-edit\\\",\\\"uuid\\\":\\\"bfeaf631-bcff-4908-93ed-fda4ef9a0c5c\\\"},\\\"version\\\":\\\"0.56.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode-remote.remote-wsl\\\",\\\"uuid\\\":\\\"f0c5397b-d357-4197-99f0-cb4202f22818\\\"},\\\"version\\\":\\\"0.50.1\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode.cpptools\\\",\\\"uuid\\\":\\\"690b692e-e8a9-493f-b802-8089d50ac1b2\\\"},\\\"version\\\":\\\"1.1.2\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"mushan.vscode-paste-image\\\",\\\"uuid\\\":\\\"ffaf4ec8-f001-4f02-b671-705ecf079cde\\\"},\\\"version\\\":\\\"1.0.4\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"raidou.calc\\\",\\\"uuid\\\":\\\"3d9e0419-faa0-41ab-b157-68a4c7a905ab\\\"},\\\"version\\\":\\\"2.0.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"rokoroku.vscode-theme-darcula\\\",\\\"uuid\\\":\\\"ec2271c0-9d6d-44c5-93e5-7e8cda744f21\\\"},\\\"version\\\":\\\"1.2.3\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"rvest.vs-code-prettier-eslint\\\",\\\"uuid\\\":\\\"d4b06bd6-36a0-469f-be55-c0a73413b688\\\"},\\\"version\\\":\\\"0.4.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"shan.code-settings-sync\\\",\\\"uuid\\\":\\\"e337c67b-55c2-4fef-8949-eb260e7fb7fd\\\"},\\\"version\\\":\\\"3.4.3\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"shd101wyy.markdown-preview-enhanced\\\",\\\"uuid\\\":\\\"3b1db1fc-c7f7-4bd6-9fa4-b499dfa99a8a\\\"},\\\"version\\\":\\\"0.5.13\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"tinkertrain.theme-panda\\\",\\\"uuid\\\":\\\"9764fb1f-aa45-4e65-a18e-705b3b00761c\\\"},\\\"version\\\":\\\"1.3.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"tobiah.unity-tools\\\",\\\"uuid\\\":\\\"df7dc071-4d1a-488b-9984-2f4fc42331f3\\\"},\\\"version\\\":\\\"1.2.12\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"unity.unity-debug\\\",\\\"uuid\\\":\\\"b0605276-f92b-4616-be91-ea11ec64dd1f\\\"},\\\"version\\\":\\\"3.0.2\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"vscodevim.vim\\\",\\\"uuid\\\":\\\"d96e79c6-8b25-4be3-8545-0e0ecefcae03\\\"},\\\"version\\\":\\\"1.17.2\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"wingrunr21.vscode-ruby\\\",\\\"uuid\\\":\\\"708cfcd8-e0c6-49ca-9af6-b27a342d247b\\\"},\\\"version\\\":\\\"0.27.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"wix.vscode-import-cost\\\",\\\"uuid\\\":\\\"c46b0018-f317-4b6c-a785-d2039b27338f\\\"},\\\"version\\\":\\\"2.12.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"rebornix.ruby\\\",\\\"uuid\\\":\\\"ae062c8a-c68e-4b92-9ecf-8f1d4288b05d\\\"},\\\"version\\\":\\\"0.27.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"slevesque.vscode-autohotkey\\\",\\\"uuid\\\":\\\"ce49f801-147f-49b8-9b1b-a8ee3dff91ef\\\"},\\\"version\\\":\\\"0.2.2\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"cweijan.vscode-autohotkey-plus\\\",\\\"uuid\\\":\\\"ef1b801b-e6bd-4bc3-a4c9-ae841ae62116\\\"},\\\"version\\\":\\\"2.6.1\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"redhat.vscode-xml\\\",\\\"uuid\\\":\\\"6703768d-d42f-474e-9f6e-5f288d53f6e8\\\"},\\\"version\\\":\\\"0.14.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"fabianlauer.vs-code-xml-format\\\",\\\"uuid\\\":\\\"7752d5d1-7dab-46f8-bc86-ffca8c2d33e7\\\"},\\\"version\\\":\\\"0.1.5\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"fwcd.kotlin\\\",\\\"uuid\\\":\\\"c86bc8a9-fd3b-44db-b28a-2d146cb78d3c\\\"},\\\"version\\\":\\\"0.2.20\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"ms-vscode-remote.remote-wsl-recommender\\\",\\\"uuid\\\":\\\"cb296d3c-017a-4dee-83af-ebb5a5a16e9a\\\"},\\\"version\\\":\\\"0.0.5\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.simple-browser\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"vscode.testing-editor-contributions\\\"},\\\"version\\\":\\\"1.0.0\\\"},{\\\"identifier\\\":{\\\"id\\\":\\\"42crunch.vscode-openapi\\\",\\\"uuid\\\":\\\"75dba0f9-d5c5-4902-99c4-cd3d60ec7147\\\"},\\\"version\\\":\\\"3.10.0\\\",\\\"installed\\\":true},{\\\"identifier\\\":{\\\"id\\\":\\\"redhat.vscode-yaml\\\",\\\"uuid\\\":\\\"2061917f-f76a-458a-8da9-f162de22b97e\\\"},\\\"version\\\":\\\"0.15.0\\\",\\\"installed\\\":true}]\"}","skippedExtensions":[]} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"identifier": { | |
"id": "vscode.bat" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.clojure" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.coffeescript" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.configuration-editing" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.cpp" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.csharp" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.css" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.css-language-features" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.dart" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.debug-auto-launch" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.debug-server-ready" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.docker" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.emmet" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.extension-editing" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.fsharp" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.git" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.github" | |
}, | |
"version": "0.0.1" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.github-authentication" | |
}, | |
"version": "0.0.2" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.go" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.groovy" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.grunt" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.gulp" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.handlebars" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.hlsl" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.html" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.html-language-features" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.image-preview" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.ini" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.jake" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.java" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.javascript" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.json" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.json-language-features" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.julia" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.less" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.log" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.lua" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.make" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.markdown" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.markdown-language-features" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.merge-conflict" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.microsoft-authentication" | |
}, | |
"version": "0.0.1" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.notebook-markdown-extensions" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.npm" | |
}, | |
"version": "1.0.1" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.objective-c" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.perl" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.php" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.php-language-features" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.powershell" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.pug" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.python" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.r" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.razor" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.ruby" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.rust" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.scss" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.search-result" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.shaderlab" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.shellscript" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.simple-browser" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.sql" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.swift" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.testing-editor-contributions" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.theme-abyss" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.theme-defaults" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.theme-kimbie-dark" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.theme-monokai" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.theme-monokai-dimmed" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.theme-quietlight" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.theme-red" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.theme-solarized-dark" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.theme-solarized-light" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.theme-tomorrow-night-blue" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.typescript" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.typescript-language-features" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.vb" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.vscode-theme-seti" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.xml" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "vscode.yaml" | |
}, | |
"version": "1.0.0" | |
}, | |
{ | |
"identifier": { | |
"id": "42crunch.vscode-openapi", | |
"uuid": "75dba0f9-d5c5-4902-99c4-cd3d60ec7147" | |
}, | |
"version": "4.5.2", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "apollographql.vscode-apollo", | |
"uuid": "de44183f-5377-4ceb-ac15-79364a30070c" | |
}, | |
"version": "1.19.3", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "castwide.solargraph", | |
"uuid": "349e83e2-207c-4309-a8d2-dfa43f7ee0c9" | |
}, | |
"version": "0.23.0", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "cweijan.vscode-autohotkey-plus", | |
"uuid": "ef1b801b-e6bd-4bc3-a4c9-ae841ae62116" | |
}, | |
"version": "2.6.2", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "dbaeumer.vscode-eslint", | |
"uuid": "583b2b34-2c1e-4634-8c0b-0b82e283ea3a" | |
}, | |
"version": "2.1.23", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "esbenp.prettier-vscode", | |
"uuid": "96fa4707-6983-4489-b7c5-d5ffdfdcce90" | |
}, | |
"version": "8.0.1", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "fabianlauer.vs-code-xml-format", | |
"uuid": "7752d5d1-7dab-46f8-bc86-ffca8c2d33e7" | |
}, | |
"version": "0.1.5", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "felixfbecker.php-intellisense", | |
"uuid": "5e69f001-f945-4c97-baf0-320d82a153b3" | |
}, | |
"version": "2.3.14", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "foam.foam-vscode", | |
"uuid": "b85c6625-454b-4b61-8a22-c42f3d0f2e1e" | |
}, | |
"version": "0.13.8", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "fwcd.kotlin", | |
"uuid": "c86bc8a9-fd3b-44db-b28a-2d146cb78d3c" | |
}, | |
"version": "0.2.23", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "github.copilot", | |
"uuid": "23c4aeee-f844-43cd-b53e-1113e483f1a6" | |
}, | |
"version": "1.1.1909", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "hilleer.yaml-plus-json", | |
"uuid": "a5c960d9-3d35-4b3f-9d53-bafe782ddf1a" | |
}, | |
"version": "1.8.0", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "ifaxity.onedark", | |
"uuid": "b853c3c3-16a1-4448-ac4d-d233a4a88d11" | |
}, | |
"version": "1.5.13", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "jebbs.plantuml", | |
"uuid": "d95cb424-7a5a-4e08-9698-107d6fd590cf" | |
}, | |
"version": "2.15.1", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "jonsmithers.open-in-vim", | |
"uuid": "710009d8-537a-4982-916d-07d9713bb996" | |
}, | |
"version": "0.6.0", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "kleber-swf.unity-code-snippets", | |
"uuid": "e310ade6-fe29-42da-a447-3fe493080a97" | |
}, | |
"version": "1.3.0", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "llvm-vs-code-extensions.vscode-clangd", | |
"uuid": "103154cb-b81d-4e1b-8281-c5f4fa563d37" | |
}, | |
"version": "0.1.11", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "ms-dotnettools.csharp", | |
"uuid": "d0bfc4ab-1d3a-4487-8782-7cf6027b4fff" | |
}, | |
"version": "1.23.12", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "ms-pyright.pyright", | |
"uuid": "593fe6a5-513e-4cb3-abfb-5b9f5fe39802" | |
}, | |
"version": "1.1.154", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "ms-toolsai.jupyter", | |
"uuid": "6c2f1801-1e7f-45b2-9b5c-7782f1e076e8" | |
}, | |
"version": "2021.6.999662501", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode-remote.remote-ssh", | |
"uuid": "607fd052-be03-4363-b657-2bd62b83d28a" | |
}, | |
"version": "0.65.7", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode-remote.remote-ssh-edit", | |
"uuid": "bfeaf631-bcff-4908-93ed-fda4ef9a0c5c" | |
}, | |
"version": "0.65.7", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode-remote.remote-wsl", | |
"uuid": "f0c5397b-d357-4197-99f0-cb4202f22818" | |
}, | |
"version": "0.56.5", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode-remote.remote-wsl-recommender", | |
"uuid": "cb296d3c-017a-4dee-83af-ebb5a5a16e9a" | |
}, | |
"version": "0.0.10" | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode.cpptools", | |
"uuid": "690b692e-e8a9-493f-b802-8089d50ac1b2" | |
}, | |
"version": "1.4.1", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode.js-debug", | |
"uuid": "25629058-ddac-4e17-abba-74678e126c5d" | |
}, | |
"version": "1.57.0" | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode.js-debug-companion", | |
"uuid": "99cb0b7f-7354-4278-b8da-6cc79972169d" | |
}, | |
"version": "1.0.13" | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode.node-debug", | |
"uuid": "b6ded8fb-a0a0-4c1c-acbd-ab2a3bc995a6" | |
}, | |
"version": "1.44.28" | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode.node-debug2", | |
"uuid": "36d19e17-7569-4841-a001-947eb18602b2" | |
}, | |
"version": "1.42.7" | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode.references-view", | |
"uuid": "dc489f46-520d-4556-ae85-1f9eab3c412d" | |
}, | |
"version": "0.0.80" | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode.vscode-js-profile-table", | |
"uuid": "7e52b41b-71ad-457b-ab7e-0620f1fc4feb" | |
}, | |
"version": "0.0.18" | |
}, | |
{ | |
"identifier": { | |
"id": "ms-vscode.vscode-typescript-next", | |
"uuid": "15305aca-2588-4ca0-8147-ab2c64730b82" | |
}, | |
"version": "4.4.20210701", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "mushan.vscode-paste-image", | |
"uuid": "ffaf4ec8-f001-4f02-b671-705ecf079cde" | |
}, | |
"version": "1.0.4", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "raidou.calc", | |
"uuid": "3d9e0419-faa0-41ab-b157-68a4c7a905ab" | |
}, | |
"version": "2.0.1", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "rebornix.ruby", | |
"uuid": "ae062c8a-c68e-4b92-9ecf-8f1d4288b05d" | |
}, | |
"version": "0.28.1", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "redhat.vscode-commons", | |
"uuid": "2f0eaac2-070b-4dc7-9b23-8dd4c970c11c" | |
}, | |
"version": "0.0.6", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "redhat.vscode-xml", | |
"uuid": "6703768d-d42f-474e-9f6e-5f288d53f6e8" | |
}, | |
"version": "0.17.0", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "redhat.vscode-yaml", | |
"uuid": "2061917f-f76a-458a-8da9-f162de22b97e" | |
}, | |
"version": "0.20.0", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "rokoroku.vscode-theme-darcula", | |
"uuid": "ec2271c0-9d6d-44c5-93e5-7e8cda744f21" | |
}, | |
"version": "1.2.3", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "rvest.vs-code-prettier-eslint", | |
"uuid": "d4b06bd6-36a0-469f-be55-c0a73413b688" | |
}, | |
"version": "3.0.4", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "shan.code-settings-sync", | |
"uuid": "e337c67b-55c2-4fef-8949-eb260e7fb7fd" | |
}, | |
"version": "3.4.3", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "shd101wyy.markdown-preview-enhanced", | |
"uuid": "3b1db1fc-c7f7-4bd6-9fa4-b499dfa99a8a" | |
}, | |
"version": "0.5.21", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "slevesque.vscode-autohotkey", | |
"uuid": "ce49f801-147f-49b8-9b1b-a8ee3dff91ef" | |
}, | |
"version": "0.2.2", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "tinkertrain.theme-panda", | |
"uuid": "9764fb1f-aa45-4e65-a18e-705b3b00761c" | |
}, | |
"version": "1.3.0", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "tobiah.unity-tools", | |
"uuid": "df7dc071-4d1a-488b-9984-2f4fc42331f3" | |
}, | |
"version": "1.2.12", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "unity.unity-debug", | |
"uuid": "b0605276-f92b-4616-be91-ea11ec64dd1f" | |
}, | |
"version": "3.0.2", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "vscodevim.vim", | |
"uuid": "d96e79c6-8b25-4be3-8545-0e0ecefcae03" | |
}, | |
"version": "1.21.4", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "wingrunr21.vscode-ruby", | |
"uuid": "708cfcd8-e0c6-49ca-9af6-b27a342d247b" | |
}, | |
"version": "0.28.0", | |
"installed": true | |
}, | |
{ | |
"identifier": { | |
"id": "wix.vscode-import-cost", | |
"uuid": "c46b0018-f317-4b6c-a785-d2039b27338f" | |
}, | |
"version": "2.15.0", | |
"installed": true | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"ref":"2493a57d-d628-4def-9ffc-a49a373184b0","content":"{\"version\":1,\"machineId\":\"a30886ae-0eae-498b-9097-6a9a97ecdf6f\",\"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.welcome\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.variablesView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.watchExpressionsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.callStackView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.loadedScriptsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.debug.breakPointsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"jsBrowserBreakpoints\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"exceptions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extensions.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.enabledExtensionList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.popularExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.enabledExtensionList2\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.workspaceRecommendedList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.local.default\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.recommendedList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.otherrecommendedList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.disabledExtensionList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.disabledExtensionList2\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.listView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.builtInExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.builtInBasicsExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.builtInThemesExtensionsList\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.local.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"extensions.local.outdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.popular\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.workspaceRecommendations\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.otherRecommendations\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.enabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.disabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.marketplace\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchInstalled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchEnabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchDisabled\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchOutdated\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.searchBuiltin\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinFeatureExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinThemeExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.builtinProgrammingLanguageExtensions\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.local.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.remote.installed\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.installed.empty\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.local.installed.empty\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.views.extensions.remote.installed.empty\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.explorer.views.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"outline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"timeline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.openEditorsView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.emptyView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"npm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.explorer.fileView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"clangd.typeHierarchyView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"dartPackages\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"clangd.memoryUsage\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"clangd.ast\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.remote.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"targetsWsl\\\\\\\",\\\\\\\"isHidden\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"~remote.helpPanel\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"sshHosts\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"~remote.forwardedPorts\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.scm.views.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.scm\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.scm.repositories\\\\\\\",\\\\\\\"isHidden\\\\\\\":true}]\\\"},\\\"workbench.view.search.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.search\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.panel.pinnedPanels\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.markers\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Problems\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":0,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.output\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Output\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":1,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.panel.repl\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Debug Console\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":2,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"terminal\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Terminal\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"order\\\\\\\":3,\\\\\\\"visible\\\\\\\":true},{\\\\\\\"id\\\\\\\":\\\\\\\"refactorPreview\\\\\\\",\\\\\\\"name\\\\\\\":\\\\\\\"Refactor Preview\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false}]\\\"},\\\"workbench.activity.pinnedViewlets2\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.explorer\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":0},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.search\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":1},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.scm\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":2},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.debug\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":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.test\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":6},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.references-view\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":7},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.openapi-explorer\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":true,\\\\\\\"order\\\\\\\":8},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.extension.flutter\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false,\\\\\\\"order\\\\\\\":8},{\\\\\\\"id\\\\\\\":\\\\\\\"workbench.view.sync\\\\\\\",\\\\\\\"pinned\\\\\\\":true,\\\\\\\"visible\\\\\\\":false}]\\\"},\\\"nps/sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"45\\\"},\\\"nps/lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Sat Feb 13 2021\\\"},\\\"nps/isCandidate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"true\\\"},\\\"cpp.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"45\\\"},\\\"cpp.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Sat Feb 13 2021\\\"},\\\"java.2.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"45\\\"},\\\"java.2.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Sat Feb 13 2021\\\"},\\\"javascript.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"45\\\"},\\\"javascript.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Sat Feb 13 2021\\\"},\\\"typescript.1.sessionCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"45\\\"},\\\"typescript.1.lastSessionDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Sat Feb 13 2021\\\"},\\\"typescript.1.editedCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"4\\\"},\\\"typescript.1.editedDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Sat Dec 12 2020\\\"},\\\"workbench.view.extension.references-view.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"references-view.tree\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"CppReferencesView\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"commandPalette.mru.cache\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"usesLRU\\\\\\\":true,\\\\\\\"entries\\\\\\\":[{\\\\\\\"key\\\\\\\":\\\\\\\"apollographql/reloadService\\\\\\\",\\\\\\\"value\\\\\\\":3},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.webview.reloadWebviewAction\\\\\\\",\\\\\\\"value\\\\\\\":4},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.debug.restart\\\\\\\",\\\\\\\"value\\\\\\\":7},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.keybindingsReference\\\\\\\",\\\\\\\"value\\\\\\\":10},{\\\\\\\"key\\\\\\\":\\\\\\\"remote-wsl.newWindow\\\\\\\",\\\\\\\"value\\\\\\\":15},{\\\\\\\"key\\\\\\\":\\\\\\\"opensshremotes.addNewSshHost\\\\\\\",\\\\\\\"value\\\\\\\":23},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.updateSettings\\\\\\\",\\\\\\\"value\\\\\\\":26},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.js-debug.debugLink\\\\\\\",\\\\\\\"value\\\\\\\":28},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.sourceAction\\\\\\\",\\\\\\\"value\\\\\\\":33},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.openDefaultKeybindingsFile\\\\\\\",\\\\\\\"value\\\\\\\":34},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.reloadWindow\\\\\\\",\\\\\\\"value\\\\\\\":40},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.toggleWordWrap\\\\\\\",\\\\\\\"value\\\\\\\":41},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.formatDocument.none\\\\\\\",\\\\\\\"value\\\\\\\":44},{\\\\\\\"key\\\\\\\":\\\\\\\"editor.action.formatDocument\\\\\\\",\\\\\\\"value\\\\\\\":45},{\\\\\\\"key\\\\\\\":\\\\\\\"git.createTag\\\\\\\",\\\\\\\"value\\\\\\\":46},{\\\\\\\"key\\\\\\\":\\\\\\\"git.push\\\\\\\",\\\\\\\"value\\\\\\\":47},{\\\\\\\"key\\\\\\\":\\\\\\\"git.pushWithTags\\\\\\\",\\\\\\\"value\\\\\\\":48},{\\\\\\\"key\\\\\\\":\\\\\\\"extension.downloadSettings\\\\\\\",\\\\\\\"value\\\\\\\":49},{\\\\\\\"key\\\\\\\":\\\\\\\"opensshremotes.openEmptyWindow\\\\\\\",\\\\\\\"value\\\\\\\":50},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.extensions.action.showRecommendedKeymapExtensions\\\\\\\",\\\\\\\"value\\\\\\\":52},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.openGlobalKeybindingsFile\\\\\\\",\\\\\\\"value\\\\\\\":53},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.files.action.showActiveFileInExplorer\\\\\\\",\\\\\\\"value\\\\\\\":55},{\\\\\\\"key\\\\\\\":\\\\\\\"revealFileInOS\\\\\\\",\\\\\\\"value\\\\\\\":56},{\\\\\\\"key\\\\\\\":\\\\\\\"workbench.action.openSettingsJson\\\\\\\",\\\\\\\"value\\\\\\\":57}]}\\\"},\\\"commandPalette.mru.counter\\\":{\\\"version\\\":1,\\\"value\\\":\\\"58\\\"},\\\"terminal.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"terminal\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"workbench.view.extension.test.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"dartTestTree\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"javascript.1.editedCount\\\":{\\\"version\\\":1,\\\"value\\\":\\\"1\\\"},\\\"javascript.1.editedDate\\\":{\\\"version\\\":1,\\\"value\\\":\\\"Mon Sep 28 2020\\\"},\\\"workbench.telemetryOptOutShown\\\":{\\\"version\\\":1,\\\"value\\\":\\\"true\\\"},\\\"colorThemeData\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"id\\\\\\\":\\\\\\\"vs-dark rokoroku-vscode-theme-darcula-themes-darcula-json\\\\\\\",\\\\\\\"label\\\\\\\":\\\\\\\"Darcula\\\\\\\",\\\\\\\"settingsId\\\\\\\":\\\\\\\"Darcula\\\\\\\",\\\\\\\"themeTokenColors\\\\\\\":[{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#707070\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"comment\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator,keyword.operator.logical,keyword.operator.relational,keyword.operator.assignment,keyword.operator.comparison,keyword.operator.ternary,keyword.operator.arithmetic,keyword.operator.spread\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#6A8759\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string,string.character.escape,string.template.quoted,string.template.quoted.punctuation,string.template.quoted.punctuation.single,string.template.quoted.punctuation.double,string.type.declaration.annotation,string.template.quoted.punctuation.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.template-expression.begin,punctuation.definition.template-expression.end\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"expression.string,meta.template.expression\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#7A9EC2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.numeric\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.language,variable.language\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9E7BB0\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.character, constant.other\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword,keyword.operator.new,keyword.operator.delete,keyword.operator.static,keyword.operator.this,keyword.operator.expression\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#7A9EC2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.type,meta.return.type,meta.type.annotation,meta.type.parameters,support.type.primitive\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage,storage.type,storage.modifier,storage.arrow\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#FFC66D\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"class.instance.constructor,new.expr entity.name.type\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#FFC66D\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.function, entity.name.function\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"annotation.meta.ts, annotation.meta.tsx\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.parameter, operator.rest.parameters\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9E7BB0\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"variable.property,variable.other.property,variable.other.object.property,variable.object.property,support.variable.property\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#6A8759\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"quote.module\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"markup.heading\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#FFC66D\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.tag.html, punctuation.definition.tag.begin, punctuation.definition.tag.end, entity.name.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.other.attribute-name\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9E7BB0\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.object-literal.key\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage.modifier.ts\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#7A9EC2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"ts.cast.expr,ts.meta.entity.class.method.new.expr.cast,ts.meta.entity.type.name.new.expr.cast,ts.meta.entity.type.name.var-single-variable.annotation,tsx.cast.expr,tsx.meta.entity.class.method.new.expr.cast,tsx.meta.entity.type.name.new.expr.cast,tsx.meta.entity.type.name.var-single-variable.annotation\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#7A9EC2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"ts.meta.type.support,ts.meta.type.entity.name,ts.meta.class.inherited-class,tsx.meta.type.support,tsx.meta.type.entity.name,tsx.meta.class.inherited-class,type-declaration,enum-declaration\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#FFC66D\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"function-declaration,method-declaration,method-overload-declaration,type-fn-type-parameters\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#6A8759\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"comment.block.documentation\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"storage.type.class.jsdoc\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.language.import-export-all\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"objectliteral.key.separator, punctuation.separator.key-value\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"fontStyle\\\\\\\":\\\\\\\" italic\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"regex\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"ts.meta.entity.name.namespace,tsx.meta.entity.name.namespace\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"regex.character-class\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.type.class\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#7A9EC2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.other.inherited-class\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#FFC66D\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.name.type.instance.jsdoc\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"yaml.entity.name,yaml.string.entity.name\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"yaml.string.out\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.brace.square.ts,block.support.module,block.support.type.module,block.support.function.variable,punctuation.definition.typeparameters.begin,punctuation.definition.typeparameters.end\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string.regexp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#FFC66D\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"punctuation.definition.group.regexp,punctuation.definition.character-class.regexp\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"constant.other.character-class.regexp, constant.character.escape.ts\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"expr.regex.or.operator\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#6A8759\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"string.template.tag,string.template.punctuation.tag,string.quoted.punctuation.tag,string.quoted.embedded.tag, string.quoted.double.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"tag.punctuation.begin.arrow.parameters.embedded,tag.punctuation.end.arrow.parameters.embedded\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"object-literal.object.member.key.field.other,object-literal.object.member.key.accessor,object-literal.object.member.key.array.brace.square\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#A5C261\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"property-list.property-value,property-list.constant\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#7A9EC2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.type.property-name.variable.css,support.type.property-name.variable.scss,variable.scss\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#FFC66D\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"entity.other.attribute-name.class.css,entity.other.attribute-name.class.scss,entity.other.attribute-name.parent-selector-suffix.css,entity.other.attribute-name.parent-selector-suffix.scss\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#7A9EC2\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"property-list.property-value.rgb-value, keyword.other.unit.css,keyword.other.unit.scss\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#FFC66D\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"property-list.property-value.function\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#A5C261\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.constant.property-value.css,support.constant.property-value.scss\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"css.entity.name.tag,scss.entity.name.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#FFC66D\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"meta.selector.css, entity.attribute-name.id, entity.other.attribute-name.pseudo-class.css,entity.other.attribute-name.pseudo-element.css\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.scss,keyword.css\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CCCCCC\\\\\\\",\\\\\\\"fontStyle\\\\\\\":\\\\\\\"italic\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"triple-slash.tag\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#6796e6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.info-token\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#cd9731\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.warn-token\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#f44747\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.error-token\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#b267e6\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"token.debug-token\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"keyword.operator.logical.python\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":\\\\\\\"support.class.dart\\\\\\\"},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9E7BB0\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"variable.language.php\\\\\\\",\\\\\\\"variable.other.php\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#9E7BB0\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"variable.other.readwrite.perl\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#CC8242\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"variable.other.property.php\\\\\\\"]},{\\\\\\\"settings\\\\\\\":{\\\\\\\"foreground\\\\\\\":\\\\\\\"#FFC66D\\\\\\\"},\\\\\\\"scope\\\\\\\":[\\\\\\\"support.variable.property.php\\\\\\\"]}],\\\\\\\"semanticTokenRules\\\\\\\":[],\\\\\\\"extensionData\\\\\\\":{\\\\\\\"_extensionId\\\\\\\":\\\\\\\"rokoroku.vscode-theme-darcula\\\\\\\",\\\\\\\"_extensionIsBuiltin\\\\\\\":false,\\\\\\\"_extensionName\\\\\\\":\\\\\\\"vscode-theme-darcula\\\\\\\",\\\\\\\"_extensionPublisher\\\\\\\":\\\\\\\"rokoroku\\\\\\\"},\\\\\\\"colorMap\\\\\\\":{\\\\\\\"editor.background\\\\\\\":\\\\\\\"#242424\\\\\\\",\\\\\\\"editor.foreground\\\\\\\":\\\\\\\"#cccccc\\\\\\\",\\\\\\\"editor.selectionBackground\\\\\\\":\\\\\\\"#204182cc\\\\\\\",\\\\\\\"editor.lineHighlightBackground\\\\\\\":\\\\\\\"#ffffff0b\\\\\\\",\\\\\\\"editor.activeLineNumber.foreground\\\\\\\":\\\\\\\"#cccccc\\\\\\\",\\\\\\\"editorGutter.background\\\\\\\":\\\\\\\"#ffffff0b\\\\\\\",\\\\\\\"titleBar.activeBackground\\\\\\\":\\\\\\\"#ffffff1a\\\\\\\",\\\\\\\"titleBar.inactiveBackground\\\\\\\":\\\\\\\"#ffffff10\\\\\\\",\\\\\\\"titleBar.activeForeground\\\\\\\":\\\\\\\"#cccccc\\\\\\\",\\\\\\\"sideBar.border\\\\\\\":\\\\\\\"#ffffff1a\\\\\\\",\\\\\\\"sideBar.background\\\\\\\":\\\\\\\"#242424\\\\\\\",\\\\\\\"statusBar.foreground\\\\\\\":\\\\\\\"#cccccc\\\\\\\",\\\\\\\"statusBar.background\\\\\\\":\\\\\\\"#ffffff1a\\\\\\\",\\\\\\\"tab.activeBackground\\\\\\\":\\\\\\\"#ffffff1a\\\\\\\",\\\\\\\"tab.inactiveBackground\\\\\\\":\\\\\\\"#ffffff0b\\\\\\\",\\\\\\\"tab.activeBorder\\\\\\\":\\\\\\\"#0c7d9d\\\\\\\",\\\\\\\"editorSuggestWidget.background\\\\\\\":\\\\\\\"#303030\\\\\\\",\\\\\\\"editorSuggestWidget.highlightForeground\\\\\\\":\\\\\\\"#cc6e2f\\\\\\\",\\\\\\\"editorSuggestWidget.selectedBackground\\\\\\\":\\\\\\\"#204182cc\\\\\\\",\\\\\\\"badge.background\\\\\\\":\\\\\\\"#ffffff1a\\\\\\\",\\\\\\\"activityBar.background\\\\\\\":\\\\\\\"#ffffff1a\\\\\\\",\\\\\\\"activityBarBadge.background\\\\\\\":\\\\\\\"#007acc\\\\\\\"},\\\\\\\"watch\\\\\\\":false}\\\"},\\\"scm/input:Git:/c:/Users/raidou/Projects/vscode-calc\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"fix: Clear highlight when cursor moved, fixes #5\\\\\\\",\\\\\\\"Release v2.0.1\\\\\\\",\\\\\\\"\\\\\\\"]\\\"},\\\"scm/input:Git:/c:/Users/raidou/Projects/notes\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"terminal.integrated.showTerminalConfigPrompt\\\":{\\\"version\\\":1,\\\"value\\\":\\\"false\\\"},\\\"scm/input:Git:/c:/Users/raidou/Projects/gamepacks\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"remote.explorerType\\\":{\\\"version\\\":1,\\\"value\\\":\\\"ssh-remote\\\"},\\\"scm/input:Git:/home/raidou/repos/gamepacks\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[\\\\\\\"\\\\\\\"]\\\"},\\\"workbench.view.extension.openapi-explorer.state.hidden\\\":{\\\"version\\\":1,\\\"value\\\":\\\"[{\\\\\\\"id\\\\\\\":\\\\\\\"openapiTwoSpecOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiTwoPathOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiTwoParametersOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiTwoResponsesOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiTwoDefinitionOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiTwoSecurityOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiTwoSecurityDefinitionOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiThreeSpecOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiThreePathOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiThreeServersOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiThreeComponentsOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiThreeSecurityOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false},{\\\\\\\"id\\\\\\\":\\\\\\\"openapiNotSelectedOutline\\\\\\\",\\\\\\\"isHidden\\\\\\\":false}]\\\"},\\\"memento/workbench.editor.keybindings\\\":{\\\"version\\\":1,\\\"value\\\":\\\"{\\\\\\\"searchHistory\\\\\\\":[\\\\\\\"@command:workbench.files.action.showActiveFileInExplorer\\\\\\\"]}\\\"}}}\"}"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"ref":"489e8cb6-679f-4275-be70-f333ae2adcd7","content":"{\"version\":2,\"machineId\":\"a30886ae-0eae-498b-9097-6a9a97ecdf6f\",\"content\":\"{\\\"windows\\\":\\\"[\\\\r\\\\n {\\\\r\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+h\\\\\\\",\\\\r\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"extension.vim_left\\\\\\\",\\\\r\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && vim.active && vim.mode == 'Insert'\\\\\\\"\\\\r\\\\n },\\\\r\\\\n {\\\\r\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+j\\\\\\\",\\\\r\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"extension.vim_down\\\\\\\",\\\\r\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && vim.active && vim.mode == 'Insert'\\\\\\\"\\\\r\\\\n },\\\\r\\\\n {\\\\r\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+k\\\\\\\",\\\\r\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"extension.vim_up\\\\\\\",\\\\r\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && vim.active && vim.mode == 'Insert'\\\\\\\"\\\\r\\\\n },\\\\r\\\\n {\\\\r\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+l\\\\\\\",\\\\r\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"extension.vim_right\\\\\\\",\\\\r\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && vim.active && vim.mode == 'Insert'\\\\\\\"\\\\r\\\\n },\\\\r\\\\n {\\\\r\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+k\\\\\\\",\\\\r\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.moveLinesUpAction\\\\\\\",\\\\r\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && vim.active && !editorReadonly && !inDebugRepl && vim.mode != 'Insert'\\\\\\\"\\\\r\\\\n },\\\\r\\\\n {\\\\r\\\\n \\\\\\\"key\\\\\\\": \\\\\\\"alt+j\\\\\\\",\\\\r\\\\n \\\\\\\"command\\\\\\\": \\\\\\\"editor.action.moveLinesDownAction\\\\\\\",\\\\r\\\\n \\\\\\\"when\\\\\\\": \\\\\\\"editorTextFocus && vim.active && !editorReadonly && !inDebugRepl && vim.mode != 'Insert'\\\\\\\"\\\\r\\\\n },\\\\r\\\\n { \\\\\\\"key\\\\\\\": \\\\\\\"ctrl+e\\\\\\\", \\\\\\\"command\\\\\\\": \\\\\\\"-workbench.action.quickOpen\\\\\\\" }\\\\r\\\\n]\\\"}\"}","platformSpecific":true} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"ref":"6ef2e7e3-0c05-4434-9007-19b64fc59c4a","content":"{\"version\":2,\"machineId\":\"a30886ae-0eae-498b-9097-6a9a97ecdf6f\",\"content\":\"{\\\"settings\\\":\\\"{\\\\n \\\\\\\"sync.gist\\\\\\\": \\\\\\\"ef8d018ff0f704024c963b3522bcdead\\\\\\\",\\\\n \\\\\\\"sync.autoDownload\\\\\\\": false,\\\\n \\\\\\\"sync.autoUpload\\\\\\\": false,\\\\n \\\\\\\"sync.forceDownload\\\\\\\": false,\\\\n \\\\\\\"sync.quietSync\\\\\\\": false,\\\\n \\\\\\\"sync.removeExtensions\\\\\\\": true,\\\\n \\\\\\\"sync.syncExtensions\\\\\\\": true,\\\\n \\\\\\\"window.zoomLevel\\\\\\\": 0,\\\\n \\\\\\\"vim.easymotion\\\\\\\": true,\\\\n \\\\\\\"vim.enableNeovim\\\\\\\": false,\\\\n \\\\\\\"vim.hlsearch\\\\\\\": true,\\\\n \\\\\\\"vim.leader\\\\\\\": \\\\\\\"space\\\\\\\",\\\\n \\\\\\\"vim.visualstar\\\\\\\": true,\\\\n \\\\\\\"vim.useSystemClipboard\\\\\\\": true,\\\\n \\\\\\\"vim.statusBarColorControl\\\\\\\": true,\\\\n \\\\\\\"vim.statusBarColors.normal\\\\\\\": \\\\\\\"#5F9C9B\\\\\\\",\\\\n \\\\\\\"vim.statusBarColors.insert\\\\\\\": \\\\\\\"#BF515A\\\\\\\",\\\\n \\\\\\\"vim.statusBarColors.visual\\\\\\\": \\\\\\\"#A45E9D\\\\\\\",\\\\n \\\\\\\"vim.statusBarColors.visualline\\\\\\\": \\\\\\\"#A45E9D\\\\\\\",\\\\n \\\\\\\"vim.statusBarColors.visualblock\\\\\\\": \\\\\\\"#839E5C\\\\\\\",\\\\n \\\\\\\"vim.statusBarColors.replace\\\\\\\": \\\\\\\"#D08750\\\\\\\",\\\\n \\\\\\\"workbench.colorCustomizations\\\\\\\": {\\\\n \\\\\\\"statusBar.background\\\\\\\": \\\\\\\"#5F9C9B\\\\\\\",\\\\n \\\\\\\"statusBar.noFolderBackground\\\\\\\": \\\\\\\"#5F9C9B\\\\\\\",\\\\n \\\\\\\"statusBar.debuggingBackground\\\\\\\": \\\\\\\"#5F9C9B\\\\\\\"\\\\n },\\\\n \\\\\\\"vim.visualModeKeyBindings\\\\\\\": [\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"i\\\\\\\", \\\\\\\",\\\\\\\"],\\\\n \\\\\\\"after\\\\\\\": [\\\\\\\"i\\\\\\\", \\\\\\\"a\\\\\\\"]\\\\n }\\\\n ],\\\\n \\\\\\\"vim.insertModeKeyBindings\\\\\\\": [\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"C-l\\\\\\\"],\\\\n \\\\\\\"commands\\\\\\\": [\\\\\\\"editor.action.triggerSuggest\\\\\\\"]\\\\n },\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"C-e\\\\\\\"],\\\\n \\\\\\\"after\\\\\\\": [\\\\\\\"C-o\\\\\\\", \\\\\\\"A\\\\\\\"]\\\\n },\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"C-a\\\\\\\"],\\\\n \\\\\\\"after\\\\\\\": [\\\\\\\"C-o\\\\\\\", \\\\\\\"I\\\\\\\"]\\\\n }\\\\n ],\\\\n \\\\\\\"vim.normalModeKeyBindings\\\\\\\": [\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"H\\\\\\\"],\\\\n \\\\\\\"commands\\\\\\\": [\\\\\\\"workbench.action.previousEditorInGroup\\\\\\\"]\\\\n },\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"L\\\\\\\"],\\\\n \\\\\\\"commands\\\\\\\": [\\\\\\\"workbench.action.nextEditorInGroup\\\\\\\"]\\\\n },\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"C-h\\\\\\\"],\\\\n \\\\\\\"after\\\\\\\": [\\\\\\\"C-w\\\\\\\", \\\\\\\"h\\\\\\\"]\\\\n },\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"C-j\\\\\\\"],\\\\n \\\\\\\"after\\\\\\\": [\\\\\\\"C-w\\\\\\\", \\\\\\\"j\\\\\\\"]\\\\n },\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"C-k\\\\\\\"],\\\\n \\\\\\\"after\\\\\\\": [\\\\\\\"C-w\\\\\\\", \\\\\\\"k\\\\\\\"]\\\\n },\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"C-l\\\\\\\"],\\\\n \\\\\\\"after\\\\\\\": [\\\\\\\"C-w\\\\\\\", \\\\\\\"l\\\\\\\"]\\\\n },\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"leader\\\\\\\", \\\\\\\"e\\\\\\\", \\\\\\\"e\\\\\\\"],\\\\n \\\\\\\"commands\\\\\\\": [\\\\\\\"workbench.files.action.focusFilesExplorer\\\\\\\"]\\\\n },\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"leader\\\\\\\", \\\\\\\"e\\\\\\\", \\\\\\\"r\\\\\\\"],\\\\n \\\\\\\"commands\\\\\\\": [\\\\\\\"workbench.files.action.showActiveFileInExplorer\\\\\\\"]\\\\n },\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"leader\\\\\\\", \\\\\\\"f\\\\\\\", \\\\\\\"f\\\\\\\"],\\\\n \\\\\\\"commands\\\\\\\": [\\\\\\\"editor.action.formatDocument\\\\\\\"]\\\\n },\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"K\\\\\\\"],\\\\n \\\\\\\"commands\\\\\\\": [\\\\\\\"editor.action.showHover\\\\\\\"]\\\\n }\\\\n ],\\\\n \\\\\\\"vim.normalModeKeyBindingsNonRecursive\\\\\\\": [\\\\n {\\\\n \\\\\\\"before\\\\\\\": [\\\\\\\"leader\\\\\\\", \\\\\\\"s\\\\\\\"],\\\\n \\\\\\\"commands\\\\\\\": [\\\\\\\"workbench.action.files.save\\\\\\\"]\\\\n }\\\\n ],\\\\n \\\\\\\"window.titleBarStyle\\\\\\\": \\\\\\\"custom\\\\\\\",\\\\n \\\\\\\"workbench.colorTheme\\\\\\\": \\\\\\\"Darcula\\\\\\\",\\\\n \\\\\\\"C_Cpp.autocomplete\\\\\\\": \\\\\\\"Disabled\\\\\\\",\\\\n \\\\\\\"C_Cpp.formatting\\\\\\\": \\\\\\\"Disabled\\\\\\\",\\\\n \\\\\\\"C_Cpp.errorSquiggles\\\\\\\": \\\\\\\"Disabled\\\\\\\",\\\\n \\\\\\\"C_Cpp.intelliSenseEngine\\\\\\\": \\\\\\\"Disabled\\\\\\\",\\\\n \\\\\\\"[css]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"[scss]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"[less]\\\\\\\": {\\\\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 \\\\\\\"[javascript]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"[javascriptreact]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"[typescript]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"[typescriptreact]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"[html]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"esbenp.prettier-vscode\\\\\\\"\\\\n },\\\\n \\\\\\\"[ruby]\\\\\\\": {\\\\n \\\\\\\"editor.defaultFormatter\\\\\\\": \\\\\\\"rebornix.ruby\\\\\\\"\\\\n },\\\\n \\\\\\\"pasteImage.path\\\\\\\": \\\\\\\"${currentFileDir}/assets/\\\\\\\",\\\\n \\\\\\\"pasteImage.namePrefix\\\\\\\": \\\\\\\"${currentFileNameWithoutExt}-\\\\\\\",\\\\n \\\\\\\"editor.cursorBlinking\\\\\\\": \\\\\\\"phase\\\\\\\",\\\\n \\\\\\\"editor.cursorSmoothCaretAnimation\\\\\\\": true,\\\\n \\\\\\\"editor.acceptSuggestionOnCommitCharacter\\\\\\\": false,\\\\n \\\\\\\"terminal.integrated.shell.linux\\\\\\\": \\\\\\\"/usr/bin/fish\\\\\\\",\\\\n \\\\\\\"remote.SSH.remotePlatform\\\\\\\": {\\\\n \\\\\\\"raidou.net\\\\\\\": \\\\\\\"linux\\\\\\\"\\\\n }\\\\n}\\\"}\"}"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sync.gist": "ef8d018ff0f704024c963b3522bcdead", | |
"sync.autoDownload": false, | |
"sync.autoUpload": false, | |
"sync.forceDownload": false, | |
"sync.quietSync": false, | |
"sync.removeExtensions": true, | |
"sync.syncExtensions": true, | |
"vim.easymotion": true, | |
"vim.enableNeovim": false, | |
"vim.hlsearch": true, | |
"vim.leader": "space", | |
"vim.visualstar": true, | |
"vim.useSystemClipboard": true, | |
"vim.statusBarColorControl": true, | |
"vim.statusBarColors.normal": "#5F9C9B", | |
"vim.statusBarColors.insert": "#BF515A", | |
"vim.statusBarColors.visual": "#A45E9D", | |
"vim.statusBarColors.visualline": "#A45E9D", | |
"vim.statusBarColors.visualblock": "#839E5C", | |
"vim.statusBarColors.replace": "#D08750", | |
"workbench.colorCustomizations": { | |
"statusBar.background": "#5F9C9B", | |
"statusBar.noFolderBackground": "#5F9C9B", | |
"statusBar.debuggingBackground": "#5F9C9B" | |
}, | |
"vim.visualModeKeyBindings": [ | |
// text-obj | |
{ | |
"before": [ | |
"i", | |
"," | |
], | |
"after": [ | |
"i", | |
"a" | |
] | |
} | |
], | |
"vim.insertModeKeyBindings": [ | |
// suggestion | |
{ | |
"before": [ | |
"C-l" | |
], | |
"commands": [ | |
"editor.action.triggerSuggest" | |
] | |
}, | |
// move | |
{ | |
"before": [ | |
"C-e" | |
], | |
"after": [ | |
"C-o", | |
"A" | |
] | |
}, | |
{ | |
"before": [ | |
"C-a" | |
], | |
"after": [ | |
"C-o", | |
"I" | |
] | |
} | |
], | |
"vim.normalModeKeyBindings": [ | |
// tabs | |
{ | |
"before": [ | |
"H" | |
], | |
"commands": [ | |
"workbench.action.previousEditorInGroup" | |
] | |
}, | |
{ | |
"before": [ | |
"L" | |
], | |
"commands": [ | |
"workbench.action.nextEditorInGroup" | |
] | |
}, | |
// windows | |
{ | |
"before": [ | |
"C-h" | |
], | |
"after": [ | |
"C-w", | |
"h" | |
] | |
}, | |
{ | |
"before": [ | |
"C-j" | |
], | |
"after": [ | |
"C-w", | |
"j" | |
] | |
}, | |
{ | |
"before": [ | |
"C-k" | |
], | |
"after": [ | |
"C-w", | |
"k" | |
] | |
}, | |
{ | |
"before": [ | |
"C-l" | |
], | |
"after": [ | |
"C-w", | |
"l" | |
] | |
}, | |
// explorer | |
{ | |
"before": [ | |
"leader", | |
"e", | |
"e" | |
], | |
"commands": [ | |
"workbench.files.action.focusFilesExplorer" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"e", | |
"r" | |
], | |
"commands": [ | |
"workbench.files.action.showActiveFileInExplorer" | |
] | |
}, | |
// document | |
{ | |
"before": [ | |
"K" | |
], | |
"commands": [ | |
"editor.action.showHover" | |
] | |
}, | |
// format | |
{ | |
"before": [ | |
"leader", | |
"f", | |
"f" | |
], | |
"commands": [ | |
"editor.action.formatDocument" | |
] | |
}, | |
// rename | |
{ | |
"before": [ | |
"leader", | |
"r", | |
"n" | |
], | |
"commands": [ | |
"editor.action.rename", | |
] | |
}, | |
// goto | |
{ | |
"before": [ | |
"g", | |
"r", | |
], | |
"commands": [ | |
"editor.action.goToReferences" | |
] | |
}, | |
{ | |
"before": [ | |
"g", | |
"i", | |
], | |
"commands": [ | |
"editor.action.goToImplementation" | |
] | |
}, | |
{ | |
"before": [ | |
"g", | |
"y", | |
], | |
"commands": [ | |
"editor.action.goToTypeDefinition" | |
] | |
}, | |
// fix | |
{ | |
"before": [ | |
"leader", | |
"f", | |
"x" | |
], | |
"commands": [ | |
"editor.action.autoFix" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"f", | |
"i" | |
], | |
"commands": [ | |
"editor.action.organizeImports" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"." | |
], | |
"commands": [ | |
"editor.action.quickFix" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"enter" | |
], | |
"commands": [ | |
"editor.action.quickFix" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"'" | |
], | |
"commands": [ | |
"editor.action.refactor" | |
] | |
}, | |
// marker | |
{ | |
"before": [ | |
"[", | |
"d" | |
], | |
"commands": [ | |
"editor.action.marker.prev" | |
] | |
}, | |
{ | |
"before": [ | |
"]", | |
"d" | |
], | |
"commands": [ | |
"editor.action.marker.next" | |
] | |
}, | |
{ | |
"before": [ | |
"[", | |
"D" | |
], | |
"commands": [ | |
"editor.action.marker.prevInFiles" | |
] | |
}, | |
{ | |
"before": [ | |
"]", | |
"D" | |
], | |
"commands": [ | |
"editor.action.marker.nextInFiles" | |
] | |
}, | |
{ | |
"before": [ | |
"[", | |
"c" | |
], | |
"commands": [ | |
"workbench.action.editor.previousChange" | |
] | |
}, | |
{ | |
"before": [ | |
"]", | |
"c" | |
], | |
"commands": [ | |
"workbench.action.editor.nextChange" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"g", | |
"<" | |
], | |
"commands": [ | |
"git.stageSelectedRanges" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"g", | |
"<" | |
], | |
"commands": [ | |
"git.unstageSelectedRanges" | |
] | |
}, | |
{ | |
"before": [ | |
"leader", | |
"g", | |
"=" | |
], | |
"commands": [ | |
"git.revertSelectedRanges" | |
] | |
}, | |
// terminal | |
{ | |
"before": [ | |
"leader", | |
"t", | |
"m" | |
], | |
"commands": [ | |
"workbench.action.terminal.focus" | |
] | |
} | |
], | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": [ | |
"leader", | |
"s" | |
], | |
"commands": [ | |
"workbench.action.files.save" | |
] | |
} | |
], | |
"window.titleBarStyle": "custom", | |
"workbench.colorTheme": "Darcula", | |
"C_Cpp.autocomplete": "Disabled", | |
"C_Cpp.formatting": "Disabled", | |
"C_Cpp.errorSquiggles": "Disabled", | |
"C_Cpp.intelliSenseEngine": "Disabled", | |
"[css]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[scss]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[less]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[ruby]": { | |
"editor.defaultFormatter": "rebornix.ruby" | |
}, | |
"pasteImage.path": "${currentFileDir}/assets/", | |
"pasteImage.namePrefix": "${currentFileNameWithoutExt}-", | |
"editor.cursorBlinking": "phase", | |
"editor.cursorSmoothCaretAnimation": true, | |
"editor.acceptSuggestionOnCommitCharacter": false, | |
// "terminal.integrated.defaultProfile.linux": "fish", | |
"remote.SSH.remotePlatform": { | |
"raidou.net": "linux" | |
}, | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter.notebook.ipynb" | |
}, | |
"editor.inlineSuggest.enabled": true, | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"ref":"0","content":null} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment