Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

This article is a Private article. Only a writer and users who know the URL can access it.
Please change open range to public in publish setting if you want to share this article with other users.

More than 5 years have passed since last update.

tmux基本コマンド

Last updated at Posted at 2017-08-19
# Prefix
Ctrl + t

Session

# create new session
$ tmux new -s ProjectA

# detach session
PF + d

# attach session
$ tmux a -t ProjectA

# change session name
PF + $

# display all sessions
$ tmux ls

# delete sessio
$ tmux kill-session -t ProjectB

# delete all sessions
$ tmux kill-server

Window

# add window
PF + c

# move window
PF + n/p

# change window name
PF + ,

# display window index
PF + w

# delete window
PF + &

Pane

# Move to next pane
PF + h/j/k/l

# Change pane size
PF + H/J/K/L

# Fix pane layout
PF + <space>

# change pane order
PF + {
PF + }

# delete pane
PF + x

# show pane index
PF + q

# synchronize panes
PF + e
PF + E

copy mode

# in
PF + [

# out
q

Others

# help / commands
PF + ?

# display clock
PF + t
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?