Skip to content

Instantly share code, notes, and snippets.

@byrontuckett
Last active August 10, 2022 13:48
Show Gist options
  • Select an option

  • Save byrontuckett/e8d88cdda33e8a792949b1707794a0ea to your computer and use it in GitHub Desktop.

Select an option

Save byrontuckett/e8d88cdda33e8a792949b1707794a0ea to your computer and use it in GitHub Desktop.
Goodies with tmux
# 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