Layna
Layna

Reputation: 457

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?

Upvotes: 3

Views: 168

Answers (1)

Bohuslav Burghardt
Bohuslav Burghardt

Reputation: 34826

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

Upvotes: 5

Related Questions