eclipse shortcut for enabling / disabling JAVA breakpoints

13,409

Solution 1

You have to assign your own keyboard shortcut to the Skip All Breakpoints command. Use Preferences>General>Keys preference page to do it.

PW

Solution 2

CtrlShftB

use CtrlShftL to open key assist for all possible keyword combinations.

Solution 3

Yes, there is this shortcut that allow you to toggle breakpoint in the current line:

CtrlShftB

Solution 4

In Eclipse, in debug perspective, you have a blue crossed circle, to enable/disable all breakpoints.

Solution 5

Follow following Steps:

  1. Open Preferences form Window->Preferences.
  2. Select General->keys.
  3. You can find Skip All Breakpoints or search it.
  4. Select Skip All Breakpoints.
  5. Choose your key Binding.
  6. Choose when.
  7. click Apply.

enter image description here

Share:
13,409
WeMakeSoftware
Author by

WeMakeSoftware

Java lead && CEO @ WeMakeSoftware.eu

Updated on June 29, 2022

Comments

  • WeMakeSoftware
    WeMakeSoftware almost 2 years

    I'm looking for a shortcut to completely enable / disable all JAVA breakpoints (analogue of pushing the "Skip all breakpoints" button in Debug view ), not to enable / disable them on a row-by-row basis.

  • Chandrayya G K
    Chandrayya G K almost 10 years
    Its not an answer. Question is about enabling/disabling All break point at once not single one. Ctrl + Shift + B toggles i.e adds/removes but NOT enables/disables breakpoints.
  • Hunter-Orionnoir
    Hunter-Orionnoir over 8 years
    fwiw Cmd+Shift+L for Mac OS to open key assist for all possible keyword combinations.