Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show breadcrumbs on Visual studio Code?

I made this window disappear. How do I recover it? enter image description here

like image 946
Raikish Avatar asked Oct 23 '18 20:10

Raikish


People also ask

How do I show indentation in VSCode?

You can click on View and then Click on Command Palette or type Ctrl + Shift + P keyboard shortcut. Click on Toggle Render Whitespace. This option can be used to toggle Indentation dots in VSCode.

What does Ctrl d do in VSCode?

Ctrl+D selects the word at the cursor, or the next occurrence of the current selection. Tip: You can also add more cursors with Ctrl+Shift+L, which will add a selection at each occurrence of the current selected text.

How do I show VSCode preview?

Tip: You can also right-click on the editor Tab and select Open Preview (Ctrl+Shift+V) or use the Command Palette (Ctrl+Shift+P) to run the Markdown: Open Preview to the Side command (Ctrl+K V).


2 Answers

Those are called breadcrumbs in most IDEs. In VSCode, it's no different.

Find the setting by going to your settings and searching "Breadcrumbs".

Breadcrumbs search in settings

If you choose to not use the fancy settings editor, you can manually add this to your configuration:

"breadcrumbs.enabled": true

Update

As of May 2019 (version 1.35), breadcrumbs are enabled by default in VSCode. They can still be toggled using the steps outlined above.

like image 125
Ian MacDonald Avatar answered Oct 01 '22 20:10

Ian MacDonald


I'd like to add one more thing to Ian MacDonalds answer:


You can simply toggle them within the "View"-menu View > Toggle Breadcrumbs :

like image 34
gr4nt3d Avatar answered Oct 01 '22 18:10

gr4nt3d