Tmux is a productivity enhancement tool that enables people to get rid of using mouse.
In Tmux we are concerning about 3 elements, which are session, window and pane. Let's see the basic operations on them.
Session management
create session
tmux new [-s session-name]attach session
tmux attach [-t session-name]check available sessions
tmux lsrename seesion
prefix $
Window management
create window
prefix crename window
prefix ,kill window
prefix &navigate window
prefix 0..9
long pressprefix+ Lprefix+ H
Pane management
create pane vertical
prefix %create pane horizontal
prefix "kill pane
prefix C-dresize pane
prefix C-arrow
prefix C-L
prefix C-K
prefix C-H
prefix C-J
Enjoy mouse free development with Tmux. (update continuously...)
Reference
- Tmux configuration is cloned from .tmux