Learn tmux in Ten Minutes
Posted loveminimal
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Learn tmux in Ten Minutes相关的知识,希望对你有一定的参考价值。
Learn Tmux in Ten Minutes
Layouts 布局
- Server 服务
- Session 会话
- Window 窗口
- 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 %
以上是关于Learn tmux in Ten Minutes的主要内容,如果未能解决你的问题,请参考以下文章
快速入门:十分钟学会PythonTutorial - Learn Python in 10 minutes
[翻译]Review——Learn these core JavaScript concepts in just a few minutes
Learn X in Y minutes, Where X=elisp
十分钟入门less(翻译自:Learn lESS in 10 Minutes(or less))
Stream Processing 101: From SQL to Streaming SQL in 10 Minutes