A vertical pane split in tmux usually means a vertical divider with one shell on the left and another on the right. That layout keeps two commands visible inside the same window without changing sessions, opening another terminal, or losing the current working context.
In tmux command names, the default Ctrl-b % binding runs split-window -h. tmux calls it a horizontal split because it divides the current pane from left to right, while many terminal users describe the same result by the vertical divider drawn between the panes.
The new pane opens on the right and becomes active immediately unless -d is used with split-window -h. The command examples were verified with tmux 3.6 on Ubuntu 26.04 using a clean config; use the configured prefix or custom binding when the session has changed the default Ctrl-b or % keys.
Related: How to split a pane horizontally in tmux
Related: How to resize panes in tmux
Ctrl-b q
The temporary overlay marks each pane and lets one number key jump focus to that pane before you split it.
Ctrl-b %
If tmux reports there is no space for another pane, enlarge the terminal or close an unused pane before splitting again.
$ tmux list-panes -F '#{pane_index}:#{pane_active}:#{pane_left}:#{pane_right}'
0:0:0:39
1:1:41:79
The fields are pane:active:left:right, so 1:1:41:79 confirms pane 1 is active on the right side; the exact coordinates change with the window width.
Ctrl-b Left