From 73be33c5556d046046652534a12e649b08bedcfb Mon Sep 17 00:00:00 2001 From: jond Date: Wed, 13 Dec 2017 15:16:42 -0600 Subject: [PATCH] Updated tmux mouse option --- tmux/.tmux.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index 1a1dda3..aadfd0c 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -29,5 +29,6 @@ set -g mode-keys vi # enable mouse control (click wind, panes, resizable panes) - as of tmux 2.1 # copy/paste: shift+left click to highlight, then shift+middle to past if-shell '[ $(echo "$(tmux -V | cut -d" " -f2) >= 2.1" | bc) -eq 1 ]' \ - 'set -g mouse on; set -g mouse-utf8 on' \ + 'set -g mouse on' \ 'set -g mode-mouse on; set -g mouse-resize-pane on; set -g mouse-select-pane on; set -g mouse-select-window on' +# 'set -g mouse on; set -g mouse-utf8 on' \