vscode

Visual Code
Extensions
- Auto Rename Tag
- Bracket Pair Colorizer
- ES7 React/Redux/GraphQL/React-Native snippets
- Highlight Matching Tag
- indent-rainbow
- Prettier - Code formatter
- vscode-styled-components
setting JSON
{
"highlight-matching-tag.styles": {
"opening": {
"left": {
"custom": {
"borderWidth": "0 0 0 3px",
"borderStyle": "solid",
"borderColor": "yellow",
"borderRadius": "5px",
"overviewRulerColor": "white"
}
},
"right": {
"custom": {
"borderWidth": "0 3px 0 0",
"borderStyle": "solid",
"borderColor": "yellow",
"borderRadius": "5px",
"overviewRulerColor": "white"
}
}
}
},
"editor.minimap.enabled": false,
"editor.fontSize": 16,
"editor.tabSize": 1,
"editor.wordWrap": "on",
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"files.autoSave": "off",
"terminal.integrated.fontSize": 18,
"terminal.integrated.fontFamily": "Hack",
"terminal.integrated.useWslProfiles": true,
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"terminal.integrated.shell.windows": "C:\\\\Windows\\\\System32\\\\wsl.exe",
"terminal.integrated.shellArgs.windows": [
"-d",
"Ubuntu"
]
}
So you are able to create your own folder actions at the Windows Registry:
-
Press
⊞ Win R+ and typeregedit. -
Navigate to the path
HKEY_CLASSES_ROOT\\Directory\\shell. -
Right click and create a new
Keynamedvscode. -
At the
(Default)REG_SZ, put the desired text, likeOpen with Code. -
Optionally, create an
Iconkey pointing to theCode.exepath (most likely"%LocalAppData%\\Programs\\Microsoft VS Code\\Code.exe").
At this point, something like this:

Yet inside regedit, go ahead:
- Create another new
Keynamedcommandinside thevscodeone. - At the
(Default)REG_SZ, put the action to open the current path ("%1") based on yourCode.exepath (most likely"%LocalAppData%\\Programs\\Microsoft VS Code\\Code.exe" "%1").
Now, see something like this:

Finally, go ahead to Windows Explorer and right click any folder:

It's updated on demand, so you can also play with text, icon and command to try your own custom actions, if you want. The VS Code Command Line Interface reference could be helpful if you want to play with another possibilites, like adding the clicked folder to the current Workspace.
PS.: dealing with regedit can be dangerous. Use it with caution and create a .reg backup before starting if you're not so experienced on it.