Difference between revisions of "tmux quickstart"
From thelinuxwiki
				
								
				
				
																
				
				
								
				| (3 intermediate revisions by one user not shown) | |||
| Line 11: | Line 11: | ||
move cursor to pane number  | move cursor to pane number  | ||
  ctrl+b q <pane-number>  (hit it before they disappear)  |   ctrl+b q <pane-number>  (hit it before they disappear)  | ||
| − | move cursor to another   | + | move cursor to another panecl  | 
using arrow keys  | using arrow keys  | ||
  crtl+b(release) <arrow key>  |   crtl+b(release) <arrow key>  | ||
| + | '''entering scrollback mode'''  | ||
| + |  ctrl-b [  | ||
| + | to exit  | ||
| + |  esc  | ||
| + | |||
| + | sync panes  | ||
| + |  crtl+b  | ||
| + |  <br>:setw synchronize-panes  | ||
| + | |||
| + | == sessions ==  | ||
| + | list running sessions  | ||
| + |  # '''tmux ls'''  | ||
| + |  myhostms: 1 windows (created Tue Aug  5 18:26:50 2014) [363x94] (attached)  | ||
| + | |||
| + | attach to running session  | ||
| + | |||
| + |  # '''tmux a -t <session_name>'''  | ||
| + | i.e.  | ||
| + |  # '''tmux a -t myhostms'''  | ||
[[category:tmux]]  | [[category:tmux]]  | ||
Latest revision as of 23:01, 15 July 2019
start tmux
tmux
display help
ctrl+b ?
split current pane vertically (creates a new pane)
ctrl+b %
split current pane horizontally (creates a new pane)
crtl+b "
display-panes numbers
ctrl+b q
move cursor to pane number
ctrl+b q <pane-number> (hit it before they disappear)
move cursor to another panecl
using arrow keys
crtl+b(release) <arrow key>
entering scrollback mode
ctrl-b [
to exit
esc
sync panes
crtl+b
:setw synchronize-panes
sessions
list running sessions
# tmux ls myhostms: 1 windows (created Tue Aug 5 18:26:50 2014) [363x94] (attached)
attach to running session
# tmux a -t <session_name>
i.e.
# tmux a -t myhostms