tmux 复制与粘贴

转载自:http://blog.csdn.net/yangzhongxuan/article/details/6890232linux

以前tmux的复制模式没有学会,网上文档有不多,因此试了不少次,终于能复制了。vim


设置复制模式中的默认键盘布局;能够设置为vi或emacs,我是把这个设置写入了配置文件。
set-window-option -g mode-keys vi #能够设置为vi或emacs
set-window-option -g utf8 on #开启窗口的UTF-8支持
tmux复制模式的命令表:

       Function                        vi             emacs
       Back to indentation     ^              M-m
       Clear selection            Escape         C-g
       Copy selection            Enter          M-w
       Cursor down                j              Down
       Cursor left                     h              Left
       Cursor right                  l              Right
       Cursor to bottom line  L
       Cursor to middle line  M              M-r
       Cursor to top line         H              M-R
       Cursor up                      k              Up
       Delete entire line         d              C-u
       Delete to end of line   D              C-k
       End of line                    $              C-e
       Goto line                       :              g
       Half page down          C-d            M-Down
       Half page up               C-u            M-Up
       Next page                    C-f            Page down
       Next word                     w              M-f
       Paste buffer                  p              C-y
       Previous page             C-b            Page up
       Previous word              b              M-b
       Quit mode                     q              Escape
       Scroll down                   C-Down or J    C-Down
       Scroll up                        C-Up or K      C-Up
       Search again                n              n
       Search backward         ?              C-r
       Search forward             /               C-s
       Start of line                    0              C-a
       Start selection              Space          C-Space
       Transpose chars                           C-t

复制模式步骤:
个人控制键为:C-b
一、 C-b [ 进入复制模式
二、 参考上表移动鼠标到要复制的区域,移动鼠标时可用vim的搜索功能"/","?"
三、 安空格键开始选择复制区域
四、    选择完成后安enter键退出
五、 C-b ] 粘贴

linux 终端下能够用 man tmux 查看更详细的说明。