Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to remove top line breadcrumb in intellij idea editor?

I'm having an issue figuring out this display bar in IntelliJ Idea Community Edition 15.

enter image description here

Does anyone know what this is and/or how to turn it off?

like image 901
Josh Glottmann Avatar asked Aug 27 '16 03:08

Josh Glottmann


People also ask

How do I get rid of split screen in IntelliJ?

To unsplit the screen, from the context menu, select Unsplit or Unsplit All to unsplit all the split frames.

Why is there a line in IntelliJ?

Basically, it's the guide line showing where the wrapping will occur (if enabled for certain code constructions).

How do I turn off word wrap in IntelliJ?

Right-click the left gutter and from the context menu, either select or clear the Soft-Wrap Current Editor option.


1 Answers

It is known as the breadcrumb menu for current code position. For example in your image you are in the position of class Display -> method Display() (constructor) -> member anonymous ActionListner -> method actionPerformed() -> member anonymous SwingWorker. (should be verified)

To disable it from showing, Go to File -> Settings -> Editor -> General -> Appearance

And Find and un-tick 'Show breadcrumbs'.

You might need to restart the editor, to take this effect into action.

enter image description here

like image 111
Supun Wijerathne Avatar answered Nov 02 '22 00:11

Supun Wijerathne