VSCode - How to remove forward slash for folder inside folder?

Viewed 1041

How to change workspace with forward slash to tree like the bottom one? I was trying to find it on the settings on VSCode but no luck

Forward Slash

Forward Slash

Tree

enter image description here

2 Answers

I guess you are looking for the setting "Compact Folders". Simply untick that option.

enter image description here

The setting is called Explorer: Compact Folders and is available under Features/Explorer in settings or as

    "explorer.compactFolders": false

in the json settings file.

Related