Skip to content

Latest commit

 

History

History
34 lines (19 loc) · 1.2 KB

README.md

File metadata and controls

34 lines (19 loc) · 1.2 KB

Tmux instructions

tmux new -s [session name]

tmux ls

tmux attach-session -t [n]

Ctrl+b d //detach from tmux session<

Ctrl+b c //create a new windows with shell assigning it the first available number from range 0...9<

Ctrl+b w //list windows<

Ctrl+b [n] //Switch to window n (by number )<

Ctrl+b , //Rename the current window<

Ctrl+b % //Split current pane horizontally into two panes<

Ctrl+b " //Split current pane vertically into two panes<

Ctrl+b o //Go to the next pane<

Ctrl+b ; //Toggle between the current and previous pane<

Ctrl+b x //Close the current pane<

Dependencies