Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove code structure view or "breadcrumbs" in Visual Studio Code?

While I was working on visual studio code, I accidentally hit a key with the command and it somehow brought into view this

this

and I'm trying to get rid of it but can't seem to find anything on it.

I'm using a Mac, using version 1.27.

like image 928
123ad30 Avatar asked Sep 25 '18 23:09

123ad30


People also ask

How do I get rid of the VS Code split screen?

From the Window menu, select Remove Split.

How do I reset VS Code default settings?

The easiest way to reset VS Code back to the default settings is to clear your user settings.json file. You can open the settings.json file with the Preferences: Open Settings (JSON) command in the Command Palette (Ctrl+Shift+P).

How do I remove code extensions and settings in Visual Studio?

To uninstall an extension, select the Manage gear button at the right of an extension entry and then choose Uninstall from the dropdown menu. This will uninstall the extension and prompt you to reload VS Code.


1 Answers

Those are "breadcrumbs"and can be disabled by:

"breadcrumbs.enabled": false 

in your settings. That is set to true by default.

There are a couple more breadcrumb settings you might look at to see if like how it looks better:

"breadcrumbs.filePath": "last"

"breadcrumbs.symbolPath": "on"
like image 141
Mark Avatar answered Sep 28 '22 03:09

Mark