Search code examples
treevisual-studio-codecustomizationindentationsidebar

Visual Studio code sidebar Vertical guideline (customize sidebar)


Does anybody know an extension for Visual Studio code to show a vertical guideline on sidebar (for file and folders) like netbeans?

Or maybe have some settings in vscode?

Netbeans Snapshot

Thanks for your help.


Solution

  • You can add guidelines with:

    "workbench.tree.renderIndentGuides": "always", // Can also be set to "onHover"
    

    You can also change their color with:

    "workbench.colorCustomizations": {
        "tree.indentGuidesStroke": "#008070"
    },
    

    And if you want to change the indentation width, you can use:

    "workbench.tree.indent": 18,