Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Turn off visual studio code inline parent/child folder display

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

like image 276
Jason McFarlane Avatar asked Dec 25 '19 10:12

Jason McFarlane


People also ask

How do I Turn Off telemetry in Visual Studio Code?

From File > Preferences > Settings (macOS: Code > Preferences > Settings), search for telemetry, and uncheck the Telemetry: Enable Telemetry setting. This will silence all telemetry events from VS Code going forward. Important Notice: VS Code gives you the option to install Microsoft and third party extensions.

How do I copy line up and down in Visual Studio Code?

Copy line up / down. Keyboard Shortcut: ⇧⌥↑ (Windows Shift+Alt+Up, Linux Ctrl+Shift+Alt+Up) or ⇧⌥↓ (Windows Shift+Alt+Down, Linux Ctrl+Shift+Alt+Down) The commands Copy Line Up/Down are unbound on Linux because the VS Code default keybindings would conflict with Ubuntu keybindings, see Issue #509.

How do I stage changes in Visual Studio Code?

Visual Studio Code Tips and Tricks ... Stage a portion of a file by selecting that file (using the arrows) and then choosing Stage Selected Ranges from the Command Palette. Undo last commit. Click the (...) button and then select Undo Last Commit to undo the previous commit. The changes are added to the Staged Changes section.

Where can I find the settings Editor in Visual Studio Code?

See more in Key Bindings for Visual Studio Code. By default VS Code shows the Settings editor, you can find settings listed below in a search bar, but you can still edit the underlying settings.json file by using the Open Settings (JSON) command or by changing your default settings editor with the workbench.settings.editor setting.


1 Answers

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

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

like image 101
NickDelta Avatar answered Sep 21 '22 15:09

NickDelta