命令行操作神器 tmux
备注:本期视频的基本内容由 @Ming 提供。
配置文件
unbind C-bset -g prefix C-asetw -g mode-keys vi
# split window like vim# vim's defination of a horizontal/vertical split is revised from tumx'sbind s split-window -hbind v split-window -v# move arount panes wiht hjkl, as one would in vim after C-wbind h select-pane -Lbind j select-pane -Dbind k select-pane -Ubind l select-pane -R
# resize panes like vim# feel free to change the "1" to however many lines you want to resize by,# only one at a time can be slowbind < resize-pane -L 10bind > resize-pane -R 10bind - resize-pane -D 10bind + resize-pane -U 10
# bind : to command-prompt like vim# this is the default in tmux alreadybind : command-prompt