Tmux Cheat Sheet

Aus Matts Wiki
Version vom 1. April 2026, 14:30 Uhr von Matt (Diskussion | Beiträge)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)

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