未知选项:带iterm,tmux的模式鼠标


30

我已经重置了计算机,现在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版。

Answers:


57

这看起来像tmux在2.0-> 2.1中的更改

我已经更换了

setw -g mode-mouse on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window off

只是

set-option -g mouse on

一切似乎还好


4
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-panemouse-resize-panemouse-select-window作为on。可能足够接近原始配置;虽然不完全相同。
davidjb

这些年来,我一直在手刹驾驶。
PnotNP

0

tmux不支持模式鼠标。尝试在〜/ .tmux.conf上使用

set -g mouse on

并在终端上运行

tmux source-file ~/.tmux.conf

在我的计算机上工作得很好,它可以滚动,更改窗格...

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.