我已经重置了计算机,现在tmux抱怨我.tmux.conf
有这些指令:
setw -g mode-mouse on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window off
set -g default-terminal "screen-256color"
这些错误:
/Users/mdurrant/.tmux.conf:24: unknown option: mode-mouse [0/0]
/Users/mdurrant/.tmux.conf:25: unknown option: mouse-select-pane
/Users/mdurrant/.tmux.conf:26: unknown option: mouse-resize-pane
/Users/mdurrant/.tmux.conf:27: unknown option: mouse-select-window
因此,我必须将它们注释掉,但是那样我的鼠标不能在tmux中工作,这很痛苦。
如何使用tmux在iTerm2中启用鼠标?
这可以在其他Mac上使用。
我使用的是tmux 2.1版。
mouse on
配置如下:The default key bindings allow the mouse to be used to select and resize panes, to copy text and to change window using the status line.
,所以它的设置相当于mouse-select-pane
,mouse-resize-pane
和mouse-select-window
作为on
。可能足够接近原始配置;虽然不完全相同。