You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
413 B
11 lines
413 B
9 years ago
|
tmux new -s <name> #creates new session
|
||
|
tmux attach -t <name> #attaches to a closed session
|
||
|
tmux ls #lists active sessions
|
||
|
---------- ^ denotes Ctrl ------------------------
|
||
|
^a d #detaches from the current session
|
||
|
^a c #creates new window
|
||
|
alt <HJKL> #switches focus between panes (like vim)
|
||
|
^a u #splits pane vertically
|
||
|
^a i #splits pane horizontally
|
||
|
^a <1-9> #switches view between windows
|