Files
wiki/computers/tmux.md
2021-11-17 23:29:19 -05:00

785 B

title, description, published, date, tags, editor, dateCreated
title description published date tags editor dateCreated
Tmux 1 2021-11-18T04:29:15.076Z markdown 2021-11-18T04:12:42.276Z

Tmux

https://tmuxcheatsheet.com/

Basics

  • ctrl+b % - Opens new pane to left
  • ctrl+b " - Opens to new below
  • ctrl+b c - Opens new window
  • ctrl+b {any number} - switches to that window
  • ctrl+b , - rename window
  • ctrl+b d - detach session
  • tmux ls - lists all sessions
  • tmux attach -t {session number/name} - reattach to session
  • tmux a - attache last session
  • ctrl+b s - session manager
  • tmux session-rename -t {session number/name} {new name} - renames session
  • tmux new -s {name} - Opens new session with given name
  • tmux kill-session -t {session number/name} - kills session