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?
Thanks for your help.
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,