Tmux Cheat Sheet: Unterschied zwischen den Versionen
Aus Matts Wiki
Matt (Diskussion | Beiträge) K Matt verschob die Seite Tmux Cheatsheet nach Tmux Cheat Sheet, ohne dabei eine Weiterleitung anzulegen |
Matt (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
| Zeile 1: | Zeile 1: | ||
This future article will show my notes on <code>tmux</code> | This future article will show my notes on <code>tmux</code> | ||
= Commands = | == Commands == | ||
{| class="wikitable" | {| class="wikitable" | ||
|+ | |+ | ||
!Command | !Command | ||
!Description | !Description | ||
|- | |- | ||
|Ctrl + B " | |Ctrl + B " | ||
|Horizontal split | |Horizontal split | ||
|- | |- | ||
|Ctrl + B % | |Ctrl + B % | ||
|Vertical split | |Vertical split | ||
|- | |- | ||
|Ctrl + B Arrow key | |Ctrl + B Arrow key | ||
|Switch to pane in the direction of arrow key | |Switch to pane in the direction of arrow key | ||
|} | |} | ||
== Enable Mouse scrolling == | |||
Create <code>~/.tmux.conf</code> file with following content: | |||
set -g mouse on | |||
This can also be done with: | |||
echo "set -g mouse on" >> ~/.tmux.conf | |||
Aktuelle Version vom 1. April 2026, 14:30 Uhr
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
