From 5f722c6e95f3afe808a2b8fb3525b3c27c381975 Mon Sep 17 00:00:00 2001 From: Michiel Scholten Date: Mon, 30 Mar 2015 08:21:30 +0200 Subject: [PATCH] Mouse support for selecting, resizing panes --- .tmux.conf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.tmux.conf b/.tmux.conf index 2b962b2..099a5e0 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -86,5 +86,11 @@ set -g history-limit 10000 # Fix for shift-keys with Fn; needs correct terminfo too setw -g xterm-keys on +# Mouse support for resizing and selecting panes +set -g mode-mouse on +set -g mouse-resize-pane on +set -g mouse-select-pane on +set -g mouse-select-window on + # Local config if-shell "[ -f ~/.tmux.conf.user ]" 'source ~/.tmux.conf.user'