Skip to content

Instantly share code, notes, and snippets.

@Alek-S
Last active September 11, 2019 00:22
Show Gist options
  • Star 12 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save Alek-S/1b652f47558d27d50824671ee0597f44 to your computer and use it in GitHub Desktop.
Save Alek-S/1b652f47558d27d50824671ee0597f44 to your computer and use it in GitHub Desktop.
tmux Commands

Start new named session:

tmux new -s [session name]

Detach from session:

ctrl+b d

List sessions:

tmux ls

Attach to named session:

tmux a -t [name of session]

Kill named session:

tmux kill-session -t [name of session]

Split panes horizontally:

ctrl+b "

Split panes vertically:

ctrl+b %

Kill current pane:

ctrl+b x

Move to another pane:

ctrl+b [arrow key]

Cycle through panes:

ctrl+b o

Cycle just between previous and current pane:

ctrl+b ;

Kill tmux server, along with all sessions:

tmux kill-server

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment