I have several debug tabs in Intelij IDEA:
If I push Ctrl+Tab IDEA suggests me to open another opened files.
Is there any hotkey to switch between debug tabs?
It should be Alt + Left / Right. And it works in any window which has tabs (Project View, Editor, terminal, etc.)
You can see it in Settings -> Keymap then Main menu -> Window -> Editor Tabs: Select Previous/Next Tab
Related
Consider 2 Terminal Tabs in Intellij:
Intellij has shortcuts to move Terminal tabs left and right:
A more common operation is simply to navigate between the Terminal Tabs. But I could not find any such shortcut. Is there a way to do this via the keyboard?
Update In response to #PetrRastegaev's suggestion to use the Window|Editor Tabs|Goto Next/Previous Splitter: they are not enabled :
Using Zerobrane, are there any defined hotkeys or keymaps that will jump between panes within the IDE? Like, some key to jump between several files open as tabs (jump between tabs). Another is jumping from editor tab pane over to the project pane, etc...
To jump between tabs you can you Ctrl-PgUp/PgDn or Ctrl-(Shift-)Tab. Also, Ctrl-P will open a command panel with the list of currently open files, and after selecting a file from the list press Enter to jump to the tab with that file.
Jumping to Project tab and Console is not available, but moving between tabs there can be done using the same Ctrl-PgUp/PgDn combination. I'll consider adding some hotkey to move between open panes.
Update 7/13: Something like this may work as a simple workaround (add to the IDE config file as Edit > Preferences > Settings: User):
ide:SetHotKey(function()ide:GetProjectTree():SetFocus()end, "Ctrl-Alt-P")
ide:SetHotKey(function()ide:GetOutlineTree():SetFocus()end, "Ctrl-Alt-O")
Other panes (Output/GetOutput(), Console/GetConsole(), etc.) can be done in a similar way.
Is there any default keyboard shortcut to close all tabs except the active one? It can be done by right-clicking the tab and choosing Close Others but I'd like to do this using only my keyboard.
ctrl+shift+a and write Close Others. Select the one with Editor Close Actions.
Or assign it your own shortcut.
Open Settings > Keymap. Search for Close others (or find it under Main menu > Window > Editor tabs.
It's not possible to access the tab context menu using the keyboard.
There's an open issue against IntelliJ for this.
Their suggestion is to add that action (tab > close others) to a quick list and you can then invoke the quick list action via a keyboard shortcut.
I'm trying to use Intellij Idea only with the keybord.
How can I navigate between groups/panels (don't know the exact term) within a tab of a tool window?
For example in the Debug tool window → tab debugger how to switch from the Frames panel to Variables panel using only the keybord?
Screenshot
There is a mapping on Alt + -> or Alt + <- to navigate between tabs within a tool window.
But I can't find a way to navigate within the panels of the tab.
i use linux, but maybe windows key + tabor more simple you can map the shortcut from your keybord in the windows settings
I'm looking for a keymap that enables me to jump between the window of the source code to the window of REPL. Do you know how this keymap is named in Keymap tab in Settings menu.
cmd+1 opens the project tool window.
I use cmd+3 to open the repl tool window.
You have to set the order of your tool windows such that REPL is 3rd to do this.