Intellij IDEA: How to navigate between tabs of debug tool window using the keyboard?

Viewed 864

enter image description here

Is there any possibility to navigate between these tabs using the keyboard?

Alt+Left/Alt+Right shortcuts navigate through the nested tabs Console/Debugger in the case shown above.

3 Answers

Open keymap setting, search "tab" and find

"Window -> Active Tool Window -> Show List of Tabs"

The default keymap is ctrl + ↓, actually it's a mistake for duplicate with "Next Method". So I just replace it by ctrl + cmd + ↓.

Debug base dropdown

I did manage to apply a keyboard shortcut to tabs navigation in PyCharm, which should work with Intellij IDEA as well.

  • Opened preferences, under "keymap"
  • Filtered by "tab"
  • Under "Window", "Editor tabs", "Select Next Tab" and "Select Previous Tab".
Related