Remove all breakpoints in IntelliJ IDEA

后端 未结 7 629
粉色の甜心
粉色の甜心 2020-12-23 02:55

Is there a possibility to remove all breakpoints in the module (might be using a shortcut) in IntelliJ IDEA IDE? Thanks.

相关标签:
7条回答
  • 2020-12-23 02:59

    press ctrl+shift+f8 and select check box of which you want to remove and then press minus button in left upper corner in android studio 2.2

    0 讨论(0)
  • 2020-12-23 03:02

    As mentioned in this answer the shortcut works.
    But we tend to forget the combination of keys (I do).

    There exists another way to access breakpoints window.

    Clicking on this button will open breakpoints window.

    0 讨论(0)
  • 2020-12-23 03:04

    On a Mac you need Shift + Comand + F8

    0 讨论(0)
  • 2020-12-23 03:09

    Ctrl+Shift+F8

    is using for removing all breakpoints.
    Select upper breakpoint -> Ctrl+Shift+End -> Remove

    On Mac Os use this:

    Cmd + Shift + (Fn) + F8 on Mac OS
    
    0 讨论(0)
  • 2020-12-23 03:16

    To remove all breakpoints in IntelliJ Idea press following sequence of shortcuts:

    1. Ctrl+Shift+F8 (open Breakpoints dialog)
    2. Ctrl+A (select all breakpoint)
    3. Alt+Delete (remove selected breakpoints)
    4. Enter (confirm)

    If you press Ctrl+Shift+F8 and your cursor is at code line with breakpoint, instead of Breakpoint dialog you get bubble with properties of a single breakpoint.

    To get the Breakpoints dialog press Ctrl+Shift+F8 again.


    Tested in IntelliJ Idea 14 Community Edition.


    In case of Mac, follow below steps:

    1. cmd+Shift+F8 (open Breakpoints dialog)
    2. cmd+A (select all breakpoint)
    3. cmd+Delete (remove selected breakpoints)
    4. Enter (confirm)

    Unlike Alt+Delete in windows, It's cmd+Delete in Mac

    0 讨论(0)
  • 2020-12-23 03:19

    As an alternative, instead of removing all breakpoints, you can just mute them. This will help in the case that you want to stop breaking on all of them. They will still exist, so you can toggle this setting again to start breaking on them.

    The mute breakpoints button can be found in the Debug view (view can be toggled using View -> Tool Windows -> Debug), in the left-hand side button menu. I attached a screenshot below.

    Mute breakpoints in IntelliJ IDEA

    0 讨论(0)
提交回复
热议问题