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.
10 lines
413 B
10 lines
413 B
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
|
|
|