mirror of
1
0
Fork 0

simplified _toggle_mouse() implementation

This commit is contained in:
Gregory Pakosz 2017-07-09 09:23:24 +02:00
parent 07685c156d
commit 03ec982a50
1 changed files with 8 additions and 25 deletions

View File

@ -215,34 +215,17 @@ run 'cut -c3- ~/.tmux.conf | sh -s _apply_configuration'
# } # }
# #
# _toggle_mouse() { # _toggle_mouse() {
# if tmux show -g -w | grep -q mode-mouse; then # old=$(tmux show -gv mouse)
# old=$(tmux show -g -w | grep mode-mouse | cut -d' ' -f2) # new=""
# new=""
# #
# if [ "$old" = "on" ]; then # if [ "$old" = "on" ]; then
# new="off" # new="off"
# else
# new="on"
# fi
#
# tmux set -g mode-mouse $new \;\
# set -g mouse-resize-pane $new \;\
# set -g mouse-select-pane $new \;\
# set -g mouse-select-window $new \;\
# display "mouse: $new"
# else # else
# old=$(tmux show -g | grep mouse | head -n 1 | cut -d' ' -f2) # new="on"
# new=""
#
# if [ "$old" = "on" ]; then
# new="off"
# else
# new="on"
# fi
#
# tmux set -g mouse $new \;\
# display "mouse: $new"
# fi # fi
#
# tmux set -g mouse $new \;\
# display "mouse: $new"
# } # }
# #
# _battery() { # _battery() {