diff options
author | nicm <nicm> | 2021-08-13 23:05:40 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-08-13 23:05:40 +0000 |
commit | 7d7d7c960593de4c37962ca2d74dbd13e5a3cc2b (patch) | |
tree | 6bff7fe294299410ca5ff272c90a2e379403adc4 /tmux.h | |
parent | 63aa96864280ff07f706ebbae302b7c15abb964f (diff) | |
download | rtmux-7d7d7c960593de4c37962ca2d74dbd13e5a3cc2b.tar.gz rtmux-7d7d7c960593de4c37962ca2d74dbd13e5a3cc2b.tar.bz2 rtmux-7d7d7c960593de4c37962ca2d74dbd13e5a3cc2b.zip |
Tweak how mouse works on popup: only Meta alone resizes or moves, not
Meta with other modifiers; button 2 on the left or top border opens
menu, right or bottom resizes; button 1 on any border moves.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1158,6 +1158,7 @@ RB_HEAD(sessions, session); #define MOUSE_MASK_CTRL 16 #define MOUSE_MASK_DRAG 32 #define MOUSE_MASK_WHEEL 64 +#define MOUSE_MASK_MODIFIERS (MOUSE_MASK_SHIFT|MOUSE_MASK_META|MOUSE_MASK_CTRL) /* Mouse wheel states. */ #define MOUSE_WHEEL_UP 0 |