tmux: Quick Start - Split Terminal Vertically & Horizontally
In this post, I am going to split terminal windows on mac using tmux . what is tmux? "tmux is a terminal multiplexer: it enables a number of terminals to be created, accessed, and controlled from a single screen. tmux may be detached from a screen and continue running in the background, then later reattached" (man page) install % brew install tmux % tmux -V tmux 3.2 start session % tmux % tmux ls 0: 1 windows (created Sun Apr 25 20:14:43 2021) (attached) Ctrl-b Ctrl-b is the signal to use tmux commands. Typing a key followed by Ctrl-b lets you split the pane, kill the window, etc. Here is the snippet from the mannual: DEFAULT KEY BINDINGS tmux may be controlled from an attached client by using a key combination of a prefix key, `C-b' (Ctrl-b) by default, followed by a command key. C-b Send the prefix key (C-b) through to the application. " ...