不明なオプション:iterm、tmuxを使用したモードマウス


29

コンピューターをリセットしましたが、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を使用します。

回答:


56

これは2.0-> 2.1のtmuxの変更のように見えます

交換しました

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-paneおよびmouse-select-windowなどon。おそらく元の構成に十分近い。ただし、まったく同じではありません。
-davidjb

ここ数年、私はハンドブレーキをかけて運転していました。
PnotNP

0

mode-mouseはtmuxではサポートされていません。〜/ .tmux.confで使用してみてください

set -g mouse on

ターミナルで実行します

tmux source-file ~/.tmux.conf

私のコンピューターでとてもうまく機能し、スクロール、ペインの変更ができます...

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.