You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## create a new session
$ tmux new-session -s 'session name'## switch to the certain session
$ tmux switch-client -t 'session name'## rename session
$ tmux rename-session -t 'old name''new name'## check whether a session exists or not
$ tmux has-session -t 'session name'## close a session
$ tmux kill-session -t 'session name'## move current window to the target index
$ tmux move-window -t 'index'## move window in source index to target index
$ tmux move-window -s 'source index' -t 'to index'## choose window
$ tmux choose-window
key bindings
prefix + d: dettach a session prefix + (: previous session prefix + ): next session prefix + L: switch back to the last session prefix + s: select a session interactively. prefix + $: rename session prefix + :: switch to commands mode prefix + c: create a new window prefix + [0-9]: traverse windows prefix + ': enter the window index prefix + f: find window prefix + l: the last selected window prefix + w: list windows prefix + <space>: switch window layout prefix + %: split window horizontal prefix + ": split window vertical prefix + x: kill pane prefix + up/down/right/left: traverse pane prefix + ;: last pane prefix + o: the next pane prefix + z: zoom a pane
useful tutorial: https://leanpub.com/the-tao-of-tmux/read
cli
key bindings
prefix + d
: dettach a sessionprefix + (
: previous sessionprefix + )
: next sessionprefix + L
: switch back to the last sessionprefix + s
: select a session interactively.prefix + $
: rename sessionprefix + :
: switch to commands modeprefix + c
: create a new windowprefix + [0-9]
: traverse windowsprefix + '
: enter the window indexprefix + f
: find windowprefix + l
: the last selected windowprefix + w
: list windowsprefix + <space>
: switch window layoutprefix + %
: split window horizontalprefix + "
: split window verticalprefix + x
: kill paneprefix + up/down/right/left
: traverse paneprefix + ;
: last paneprefix + o
: the next paneprefix + z
: zoom a panecommands inside tmux
kill-session
:rename-session
:rename-window
:split-window -h
:split-window -v
kill-pane
kill-window
The text was updated successfully, but these errors were encountered: