K Guru
K Guru

Reputation: 1302

Ctrl+shift+F8 not working on android studio

I want to remove all the Breakpoints in module using shortcut

Ctrl+shift+F8

but this shortcut not work on android studio 2.2 on window 10

Any help ?

thats my setting

enter image description here

Upvotes: 1

Views: 1687

Answers (2)

Charuka Silva
Charuka Silva

Reputation: 13153

First go to Settings > Keymap and search like i did and find out whats there,That's what you are looking for enter image description here

You can reset short keys...or change as you want..

enter image description here

Once you are done it that keys will display debug points you have.Then go to its top and click minus mark in red.All gone!

enter image description here

Upvotes: 3

Abdul Waheed
Abdul Waheed

Reputation: 4678

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)

For more details please refer below link.

Remove all breakpoints in IntelliJ IDEA

Upvotes: 0

Related Questions