User Tools

Site Tools


os:linux:tmux
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


os:linux:tmux [2020-12-06 12:15] (current) – created Manuel Frei
Line 1: Line 1:
 +====== tmux ======
  
 +===== Configuration Snippets =====
 +
 +==== Switch Windows by Alt+Arrow Keys ====
 +
 +<code>
 +bind -n M-Left  previous-window
 +bind -n M-Right next-window
 +</code>
 +
 +==== Change Meta Key to b ====
 +
 +<code>
 +unbind-key C-b #no more Ctrl-b
 +set-option -g prefix C-b
 +bind-key b send-prefix
 +</code>
 +
 +==== Switch to Last Window ====
 +
 +<code>
 +# back to last window ^B
 +unbind ^B
 +bind ^B last-window
 +</code>
os/linux/tmux.txt · Last modified: 2020-12-06 12:15 by Manuel Frei