Turn off visual studio code inline parent/child folder display

Visual Studio-CodeVscode Settings

Visual Studio-Code Problem Overview


Im not sure if this is an extension or an update but ever since the most recent VS code update they have single folders inline with parent folders. I didnt think it would bother me as much but I find that is driving me crazy, I much to prefer to just have child folders nested underneath the first time instead of dynamically changing all the time based on my folder structure.

Here is an image example, anybody know what this setting is called?

enter image description here

Visual Studio-Code Solutions


Solution 1 - Visual Studio-Code

File -> Preferences -> Settings -> Features -> Explorer and untick the compact folders checkbox.

Or directly in your settings.json, add "explorer.compactFolders": false.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJason McFarlaneView Question on Stackoverflow
Solution 1 - Visual Studio-CodeNickDeltaView Answer on Stackoverflow