Tmux无法用鼠标切换窗格

时间:2016-02-16 22:21:15

标签: tmux tmuxinator

我在.tmux.conf

中有这些内容
#set -g mouse-utf8 on
set -g mouse on

# Allow xterm titles in terminal window, terminal scrolling with scrollbar, and setting overrides of C-Up, C-Down, C-Left,     C-Right
#set -g terminal-overrides "xterm*:XT:smcup@:rmcup@:kUP5=\eOA:kDN5=\eOB:kLFT5=\eOD:kRIT5=\eOC"

# Scroll History
set -g history-limit 30000

set -g set-titles on

set -g focus-events on

# but don't change tmux's own window titles
set -w -g automatic-rename off

set-option -g default-shell /bin/zsh

如果不使用快捷方式,我无法使用鼠标或将焦点更改为不同的窗格。我也无法在不使用快捷方式的情况下切换标签。我使用的是tmux 2.1。

1 个答案:

答案 0 :(得分:0)

要在会话中的窗格和窗口之间切换,请将以下内容添加到.tmux.conf

set -g mode-mouse on set -g mouse-select-pane on set -g mouse-select-window on

作为额外的辅助工具,使用鼠标来调整窗格也很有用,为此,请使用以下行: set -g mouse-resize-pane on