Tmux Cheat Sheet

Aus Matts Wiki

This future article will show my notes on tmux

Commands

Command Description
Ctrl + B " Horizontal split
Ctrl + B % Vertical split
Ctrl + B Arrow key Switch to pane in the direction of arrow key

Enable Mouse scrolling

Create ~/.tmux.conf file with following content:

set -g mouse on

This can also be done with:

echo "set -g mouse on" >> ~/.tmux.conf