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.
Conversation. VSCode tip: You can move the sidebar/file explorer to the right-hand side of your editor via View > Appearance > Move Side Bar Right.
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,
And in v1.36 tree indent guides are implemented, see release notes, tree indent guides.
Plus, you can change their color with this colorCustomiztion
:
"tree.indentGuidesStroke": "#ff0000"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With