0% found this document useful (0 votes)
5 views

Tmux & tmuxify cheatsheet

This document provides a comprehensive guide to using tmux, including general commands for starting, detaching, reattaching, listing, and killing sessions. It also covers window management commands for creating, switching, renaming, and killing windows, as well as pane management commands for splitting, switching, resizing, and scrolling through panes. The commands are designed to enhance productivity in terminal multiplexing.

Uploaded by

rishikeshtamur
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views

Tmux & tmuxify cheatsheet

This document provides a comprehensive guide to using tmux, including general commands for starting, detaching, reattaching, listing, and killing sessions. It also covers window management commands for creating, switching, renaming, and killing windows, as well as pane management commands for splitting, switching, resizing, and scrolling through panes. The commands are designed to enhance productivity in terminal multiplexing.

Uploaded by

rishikeshtamur
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Tmux & tmuxify

General Commands

● Start tmux: tmux


● Detach session: [CTRL + b] + d
● Reattach session: tmux attach-session -t <session-name>
● List sessions: tmux list-sessions
● Kill session: tmux kill-session -t <session-name>

Window Management

● Create new window: [CTRL + b] + c


● Switch between windows: [CTRL + b] + n (next), [CTRL + b] + p (previous)
● List windows: [CTRL + b] + w
● Rename window: [CTRL + b] + ,
● Kill window: [CTRL + b] + &
● Move to a specific window by number: [CTRL + b] + <number>

Pane Management

● Split window vertically: [CTRL + b] + %


● Split window horizontally: [CTRL + b] + "
● Switch between panes: [CTRL + b] + arrow keys
● Show pane numbers: [CTRL + b] + q
● Kill pane: [CTRL + b] + x
● Resize pane: [CTRL + b] + :resize-pane -D (down), -U (up), -L (left), -R (right)
● Scroll: [ctrl+b] + [ then use arrow up or down, to exit scroll mode press Q
[ctrl + b] + PgUp or PgDown

You might also like