Dhawalk
Dhawalk

Reputation: 1269

Is it possible to change the debugging shortcut keys in IntelliJ IDEA

I have spent s lot of my time in VS, and have recently started working in IDEA. the debugging shortcuts in VS and IDEA differ. For instance Idea use F7 for stepping in, whereas VS uses F11.

I am looking for the ability to change the debugging shortcuts in IDEA. I did some research and found keymaps. but my brief research shows that keymaps lets you change editor shortcuts, and not debugging shortcuts. Or is my initial assessment about keymap wrong and we can use it for configuring debugging shortcut? if not keymap, is there another way to change the IDEA shortcuts?

Upvotes: 4

Views: 4392

Answers (3)

ChrisE
ChrisE

Reputation: 576

You can add plugins for VS keymaps.

  1. Go to File->Settings->Plugins and search for keymaps. I used the VSCode one. enter image description here
  2. Go to File->Settings->Keymaps and select it from the list enter image description here
  3. Done!

enter image description here

enter image description here

Upvotes: 4

userFog
userFog

Reputation: 11499

  1. Go to the Tools field in the menu bar
  2. Go select the Options... option in the drop down menu
  3. Select Environment
  4. Select Keyboard
  5. In the "Show Commands Containing" textbox type in the action you are trying to achieve e.x. "Debug.Start"
  6. Select the "Press Shortcut Keys" textbox and press the keyboard config you would prefer
  7. Click Assign
  8. Done

Upvotes: 5

sidoh
sidoh

Reputation: 590

I think you can edit the relevant shortcuts under Keymap > Main menu > Run

Upvotes: 9

Related Questions