Tmux 小技巧

Tmux 插件:

Tmux 常用命令:

  • 窗口命名:
从tmux 2.6开始,您可以执行以下操作:

$ tmux select-pane -t {pane} -T {title}

# Examples:
$ tmux select-pane -T title1          # Change title of current pane
$ tmux select-pane -t 1 -T title2     # Change title of pane 1 in current window
$ tmux select-pane -t 2.1 -T title3   # Change title of pane 1 in window 2
您可以在状态栏中查看每个窗格的标题,其中包括:

$ tmux set pane-border-status bottom      # For current window
$ tmux set -g pane-border-status bottom   # For all windows
通过以下方式禁用状态栏:

$ tmux set pane-border-status off       # For current window
$ tmux set -g pane-border-status off    # For all windows

https://www.itranslater.com/qa/details/2326048855864902656

常用快捷键

https://www.cnblogs.com/defifind/p/10826180.html

posted @ 2021-03-06 10:37  佰大于  阅读(72)  评论(0编辑  收藏  举报