Enter Intellij debug-view without starting the debugger?

Intellij is driving me crazy ... is there a way to open the debugs-view (so I can see a list of breakpoints and edit them) without having to run the program in debug mode?

If there is a way or a button or a short circuit, I still haven't seen it.


After discovering my breakpoints thanks to Boguslav Burgard, is there a way to disable all of them without a visible debug area?

+3


source to share


1 answer


Enable Favorites Window

  • View -> Windows Tool -> Favorites
  • Or using the keyboard shortcut ( Alt+ 2)

This will show you the Favorites window, which contains your bookmarks and breakpoints.

You can edit a breakpoint by right-clicking it and choosing Edit Breakpoint.



Update

How to disable all breakpoints without visible debug bar. You have two options:

  • Press CTRL+ SHIFT+ Aand find Mute breakpoints (call this action again to disable breakpoints)
  • Go to the Keyboard Preferences / Layout section and bind a keyboard shortcut to the Mute Breakpoints action.
+5


source







All Articles