summaryrefslogtreecommitdiff
path: root/usr.bin/tmux
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2015-10-26 17:17:07 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2015-10-26 17:17:07 +0000
commit30401b58158d707089c002108187c87f645f67c4 (patch)
tree76a5874155adc6dfd6d16b7926a6a7c0f07ef21c /usr.bin/tmux
parente3546a01a9c4cd1bc24535ee37e9b22590650557 (diff)
Some extra logging of where keys are actually going.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r--usr.bin/tmux/input-keys.c7
-rw-r--r--usr.bin/tmux/server-client.c4
2 files changed, 7 insertions, 4 deletions
diff --git a/usr.bin/tmux/input-keys.c b/usr.bin/tmux/input-keys.c
index f7fefb2578c..46f657d81a4 100644
--- a/usr.bin/tmux/input-keys.c
+++ b/usr.bin/tmux/input-keys.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: input-keys.c,v 1.43 2015/04/21 15:21:41 nicm Exp $ */
+/* $OpenBSD: input-keys.c,v 1.44 2015/10/26 17:17:06 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -145,7 +145,8 @@ input_key(struct window_pane *wp, int key, struct mouse_event *m)
char *out;
u_char ch;
- log_debug("writing key 0x%x (%s)", key, key_string_lookup_key(key));
+ log_debug("writing key 0x%x (%s) to %%%u", key,
+ key_string_lookup_key(key), wp->id);
/* If this is a mouse key, pass off to mouse function. */
if (KEYC_IS_MOUSE(key)) {
@@ -251,6 +252,6 @@ input_key_mouse(struct window_pane *wp, struct mouse_event *m)
buf[len++] = x + 33;
buf[len++] = y + 33;
}
- log_debug("writing mouse %.*s", (int)len, buf);
+ log_debug("writing mouse %.*s to %%%u", (int)len, buf, wp->id);
bufferevent_write(wp->event, buf, len);
}
diff --git a/usr.bin/tmux/server-client.c b/usr.bin/tmux/server-client.c
index 1cfd2a00d5c..67028ee10b7 100644
--- a/usr.bin/tmux/server-client.c
+++ b/usr.bin/tmux/server-client.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: server-client.c,v 1.159 2015/10/23 23:46:36 nicm Exp $ */
+/* $OpenBSD: server-client.c,v 1.160 2015/10/26 17:17:06 nicm Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -369,6 +369,8 @@ server_client_check_mouse(struct client *c)
wp = window_get_active_at(s->curw->window, x, y);
if (wp != NULL)
where = PANE;
+ log_debug("mouse at %u,%u is on pane %%%u", x, y,
+ wp->id);
}
if (where == NOWHERE)
return (KEYC_NONE);