欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

Learn tmux in Ten Minutes

程序员文章站 2022-05-16 08:07:23
"Learn Tmux in Ten Minutes" "Layouts 布局" "Window 窗口" "Pane 窗格" "CONFIGURATION" Learn Tmux in Ten Minutes Layouts 布局 1. Server 服务 2. Session 会话 3. Wind ......

learn tmux in ten minutes

layouts 布局

  1. server 服务
  2. session 会话
  3. window 窗口
  4. pane 窗格

window 窗口

  • c - new a window 新建窗口
  • & - close current window 关闭窗口
  • l - switch to last window 切换窗口

  • n - next window 切换到下一个窗口
  • p - previous window 切换到上一下窗口

  • w - show window menu list 窗口的菜单列表

pane 窗格

  • % - horizontal split 水平分屏
  • " - vertical split 垂直分屏

  • x - close current pane 关闭窗格

  • ; - switch to last pane 切换窗格

  • o - move clockwise 顺时针切换窗格
  • c-o - swap pane anti-clockwise 逆时针转换窗格
  • m-o - swap pane clockwise 顺时针转换窗格

configuration

~/.tmux.conf

unbind c-b
set-option -g prefix c-j

set-option -g -q mouse on

bind h split-window -h
bind v split-window -v
unbind '"'
unbind %