vscode

visual-code.png

Visual Code

Extensions


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:

At this point, something like this:

https://i.stack.imgur.com/FizYh.png

Yet inside regedit, go ahead:

Now, see something like this:

https://i.stack.imgur.com/2JUHn.png

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

https://i.stack.imgur.com/97pKm.png

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.