Table of Contents

tmux

Configuration Snippets

Switch Windows by Alt+Arrow Keys

bind -n M-Left  previous-window
bind -n M-Right next-window

Change Meta Key to b

unbind-key C-b #no more Ctrl-b
set-option -g prefix C-b
bind-key b send-prefix

Switch to Last Window

# back to last window ^B
unbind ^B
bind ^B last-window