Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get into Intellij debug-view without actually starting the debugger?

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

If there is a way or button or short-cut, I have failed to see it till now.


After finding my breakpoints thanks to Bohuslav Burghardt, is there a way to mute them all without the debug-pane being visible?

like image 898
Layna Avatar asked Feb 21 '26 14:02

Layna


1 Answers

Enable the Favorites tool Window

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

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

You can edit breakpoint by right clicking on it and choosing Edit breakpoint.

Update

As for muting all the breakpoints without the debug panel being visible. You have two choices:

  • Hit CTRL+SHIFT+A and search for Mute breakpoints (invoke this action again to unmute the breakpoints)
  • Go to Settings/Keymap and bind a keyboard shortcut to the Mute Breakpoints action
like image 157
Bohuslav Burghardt Avatar answered Feb 24 '26 18:02

Bohuslav Burghardt