Last active
August 10, 2022 13:48
-
-
Save byrontuckett/e8d88cdda33e8a792949b1707794a0ea to your computer and use it in GitHub Desktop.
Goodies with tmux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # C-b === control-b | |
| # Splt pane vertically | |
| C-b % | |
| # Split pane horizontally | |
| C-b " | |
| # Close pane or window | |
| exit | |
| # New Windows | |
| C-b c | |
| # Switch between windows | |
| C-b <window integer> | |
| # Detach from tmux session | |
| C-b d | |
| # list tmux sessions | |
| tmux ls | |
| # Rename Window | |
| C-b , | |
| # tmux rename sesssion | |
| tmux rename-session -t 0 new-window-name | |
| # tmux reattach to session | |
| tmux attach -t <window-name> | |
| # new named session | |
| tmux new -s sessionname | |
| # Destroy a session | |
| tmux kill-session -t sessionname |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment