Tmux使用简单汇总

SESSION

  • new
    $ tmux new -s
  • detach
    $ tmux detach
    or
    Ctrl+b d:分离当前会话
  • attach
    $ tmux attach -t
  • switch
    $ tmux switch -t
  • kill
    $ tmux kill-session -t

WINDOW

Ctrl+b w:从列表中选择窗口

  • new
    $ tmux new-window -n
  • select
    $ tmux select-window -t

PANE in WINDOW

  • split
    # 划分上下两个窗格 $ tmux split-window
    # 划分左右两个窗格 $ tmux split-window -h
  • select
    # 光标切换到上方窗格 $ tmux select-pane -U
    # 光标切换到左边窗格 $ tmux select-pane -L
  • mgmt

Ctrl+b %:划分左右两个窗格。
Ctrl+b ":划分上下两个窗格。

Ctrl+b :光标切换到其他窗格。
Ctrl+b ;:光标切换到上一个窗格。
Ctrl+b o:光标切换到下一个窗格。

Ctrl+b {:当前窗格与上一个窗格交换位置。
Ctrl+b }:当前窗格与下一个窗格交换位置。

Ctrl+b x:关闭当前窗格。
Ctrl+b z:当前窗格全屏显示,再使用一次会变回原来大小。
Ctrl+b Ctrl+:按箭头方向调整窗格大小。
Ctrl+b q:显示窗格编号。

你可能感兴趣的:(Tmux使用简单汇总)