How to cycle through panes inside a window in tmux like in screen

configurationgnu-screentmuxvim

I thought Moving tmux pane to window was the same question but it doesn't seem to be.

Coming from using GNU screen regularly, I'm looking for tmux to do the same things. On of the things I do regularly is have a couple of different windows open, one with some code open in vim, and a couple of terminals windows open to test the code, and sometimes a window or two for various other things. I split the screen vertically and will often have the vim window in the top pane and then one of the other windows in the bottom bane.

The main commands I then use are Ctrla,Tab to rotate among the panes and Ctrla,n to rotate between the windows within a pane. For instance, with vim in the top pane, I switch to the bottom pane and then rotate through the other terminals, doing whatever I need. The screen stays split the whole time.

The problem is I can't find comparable capability to screen's Ctrla,n in tmux. Switching windows seems to not work inside a pane, but jumps entirely. If the screen is split the only two options seem to be to jump to some window that isn't split and then split it or to do a sub-split of a pane. Neither are what I was looking for.

Suggestions (besides just sticking with screen)?

Best Answer

tmux and screen have different models so there is no exact equivalent.

In screen terms, a split lets you display multiple windows at the same time. next (C-a n) rotates windows through the active part of the split; this lets you rotate “hidden” windows through the active region of the split.

In tmux terms, a split divides a window into one or more panes. Each part of a split window is an individual pane, panes are never hidden (if a window is selected (visible) all its panes are, too), and a pane can only be used in a single split of one window (a pane can not be in multiple windows, and it can not be in multiple splits of the same window). There are commands to move panes around in (or between) windows, but not in an identical way to next in screen.


You could use a binding like the following to arrange a similar effect:

bind-key C-n swap-pane -s :+.top \; rotate-window -Ut :+

You will probably want to put this in your ~/.tmux.conf file, but you can just type/paste it after Prefix : to bind it in your current server instance.

To use the binding, pick your “main window”, split it, create a “pane container” window immediately after the “main window”, then use the binding to rotate any pane in the “main window” among the group in the “pane container” window.

Here is how you might create the setup:

  • Pick a window to use as your “main window”. Start (e.g.) Vim in it.

  • Split your “main window” into two panes.

    E.g. Prefix " (:split-window)

    You can use this pane as your testing window (or log viewer, or whatever).

  • Create a new window (the “pane container”) immediately after your main window.

    E.g. Prefix c (:new-window)

    It is important that no other window gets between the indexes of the “main window” and the “pane container” window (+ in the window specifiers used in the bound commands means “the next higher numbered window”).

  • Split this window into a number of panes. To rotate through three panes, split this window into two panes (the third pane is the one in the “main window”).

    Maybe you need a shell for git, and a shell for running a database interface. Put each in a separate pane in this “pane container” window.

  • Switch back to your “main window”. Select the pane that you want to “rotate out”.

    You can use Prefix Up/Down/Left/Right to move among the panes.

  • Invoke the binding to swap the current pane with the first pane in “pane container” window and (“behind the scenes”) rotate the panes inside the “pane container” window (so that the next time you run the binding, the first command swaps with the “next” pane in the sequence).

    Prefix Control-n (the binding use C-n, but you could change this to whatever you like).

  • To scroll backwards through the panes, you can use the below:

bind-key C-p swap-pane -s :+.bottom \; rotate-window -Dt :+
Related Question