Tmux が OS X Yosemite ターミナルのスクロールに反応しない

Tmux が OS X Yosemite ターミナルのスクロールに反応しない

最近、OS X Yosemiteにアップデートしたのですが、Appleがターミナルアプリにマウスのサポートを追加したことを知って嬉しく思いました。これは、標準のターミナルウィンドウで履歴をスクロールしたり、lessのようなアプリでうまく機能します。しかし、tmuxを起動すると、トラックパッドでスクロールするとコマンド履歴がスクロールされ、ない端末出力。

私の.tmux.confファイルは次のようになります:

# INTERFACE

# enable mouse support
set-window-option -g mode-mouse on

# set up the default command to ensure the window's name is empty if it's not already defined and
# to reattach the user namespace to the current shell
set-option -g default-command 'reattach-to-user-namespace -l $SHELL;'

# modify the split pane keyboard shortcuts
unbind %
unbind '"'
bind '"' split-window -h
bind = split-window -v

# rebind the c shortcut so it creates a window with an empty name
bind-key c new-window -n ''

# set the window title to be the current session's name
set -g set-titles on
set -g set-titles-string '#S'
set-window-option -g automatic-rename off

# STATUS BAR

# start counting the window panes at 1 instead of 0
set -g base-index 1
set -g pane-base-index 1

# set up the default colors and font weights
set -g status-fg white
set -g status-bg colour234
set -g window-status-activity-attr bold
set -g pane-border-fg colour245
set -g pane-active-border-fg colour39
set -g message-fg colour16
set -g message-bg colour221
set -g message-attr bold

# set up the status left
set -g status-right ""
set -g status-left-length 32
set -g status-left '#[fg=colour235,bg=colour252,bold] #S '

# set up the window status
set -g window-status-format "#[fg=white,bg=colour234] #I: #W "
set -g window-status-current-format "#[fg=colour235,bg=colour39,noreverse,bold] #I: #W "

ご協力ありがとうございます!

答え1

私もYosemiteを使っていますが、マウスホイールを使って履歴をスクロールすることができますコピーモードに入ると

答え2

先日、私自身も同じような問題を抱えていたので、この質問に遭遇しました。この問題を解決する方法がわかりました。ターミナルの設定に移動します。プロファイル -> キーボードの一番下に、「マウス」というボタンがあります。それをクリックすると、マウスの設定を可能にするダイアログが開きます。「マウス ホイール イベントをエミュレートする」のチェックを外します。これで完了です。

編集: スクリーンショット

マウスボタン

このボタンはテキストの上に配置されているので、奇妙な配置になっています。別のアプリケーションによって追加されたのではないかと思います。私はイージーSIMBLマウスターム. それを追加してみてはいかがでしょうか? おそらくそのオプションはそこから来ているのでしょうか?

ダイアログは次のとおりです:

マウス設定ダイアログ

関連情報