Remove the mouse toggling logic as I don't think I've ever intentionally disabled the mouse

This commit is contained in:
Kevin MacMartin 2021-03-18 22:17:20 -04:00
parent 6d14264cce
commit 9853d7af9a
3 changed files with 0 additions and 9 deletions

View file

@ -32,7 +32,6 @@
| `` ` `` | Toggle synchronized input between the panes on the current window |
| `<Ctrl>r` | Clear the terminal history, tmux history and the current window/pane |
| `r` and `R` | Reload /etc/tmux.conf and ~/.tmux.conf respectively |
| `m` and `<Ctrl>m` | Enable and disable the mouse respectively |
| `?` and `/` | Show help for available key bindings and commands respectively |
| `y` and `<Ctrl>p` | Enter __copy mode__ and paste from the copy buffer respectively |
| `<Ctrl>v` and `<Ctrl>y` | Pastes the X buffer in tmux, and sends the tmux buffer to X respectively |

View file

@ -48,10 +48,6 @@ bind -T root MouseDown3Pane send-keys -M #send right clicks to the application b
# KEY BINDINGS
#
# m and <ctrl>m to enabling and disabling the mouse respectively
bind m set-option -g mouse on \; display 'Mouse: ON'
bind C-m set-option -g mouse off \; display 'Mouse: OFF'
#
# r and <ctrl>r to reloading ~/.tmux.conf and /etc/tmux.conf respectively
bind r source-file ~/.tmux.conf
bind R source-file /etc/tmux.conf

View file

@ -48,10 +48,6 @@ bind -T root MouseDown3Pane send-keys -M #send right clicks to the application b
# KEY BINDINGS
#
# m and <ctrl>m to enabling and disabling the mouse respectively
bind m set-option -g mouse on \; display 'Mouse: ON'
bind C-m set-option -g mouse off \; display 'Mouse: OFF'
#
# r and <ctrl>r to reloading ~/.tmux.conf and /etc/tmux.conf respectively
bind r source-file ~/.tmux.conf
bind R source-file /etc/tmux.conf