summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/tty.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2017-02-01 09:55:07 +0000
committernicm <nicm@openbsd.org>2017-02-01 09:55:07 +0000
commit9f26c5b165048a4aff3063de32b6e6ea13b7dd57 (patch)
treea41414738d3cd08b34ef491547dd694101133ebd /usr.bin/tmux/tty.c
parentupdate currency exchanges rates; (diff)
downloadwireguard-openbsd-9f26c5b165048a4aff3063de32b6e6ea13b7dd57.tar.xz
wireguard-openbsd-9f26c5b165048a4aff3063de32b6e6ea13b7dd57.zip
Implement "all event" (1003) mouse mode but in a way that works. The
main issue is that if we have two panes, A with 1002 and B with 1003, we need to set 1003 outside tmux in order to get all the mouse events, but then we need to suppress the ones that pane A doesn't want. This is easy in SGR mouse mode, because buttons == 3 is only used for movement events (for other events the trailing m/M marks a release instead), but in normal mouse mode we can't tell so easily. So for that, look at the previous event instead - if it is drag+release as well, then the current event is a movement event.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-rw-r--r--usr.bin/tmux/tty.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c
index 6ed4a31d963..37a4cd73879 100644
--- a/usr.bin/tmux/tty.c
+++ b/usr.bin/tmux/tty.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tty.c,v 1.224 2017/01/12 00:30:41 nicm Exp $ */
+/* $OpenBSD: tty.c,v 1.225 2017/02/01 09:55:07 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -568,12 +568,16 @@ tty_update_mode(struct tty *tty, int mode, struct screen *s)
* it is safe from misinterpretation.
*/
tty_puts(tty, "\033[?1006h");
- if (mode & MODE_MOUSE_BUTTON)
+ if (mode & MODE_MOUSE_ALL)
+ tty_puts(tty, "\033[?1003h");
+ else if (mode & MODE_MOUSE_BUTTON)
tty_puts(tty, "\033[?1002h");
else if (mode & MODE_MOUSE_STANDARD)
tty_puts(tty, "\033[?1000h");
} else {
- if (tty->mode & MODE_MOUSE_BUTTON)
+ if (tty->mode & MODE_MOUSE_ALL)
+ tty_puts(tty, "\033[?1003l");
+ else if (tty->mode & MODE_MOUSE_BUTTON)
tty_puts(tty, "\033[?1002l");
else if (tty->mode & MODE_MOUSE_STANDARD)
tty_puts(tty, "\033[?1000l");