From 6de466cf8b665d8725301307c57f6d8cb2e65a3f Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 23 Nov 2016 17:01:24 +0000 Subject: For mouse keys, use the mouse pane as the default current pane. --- key-bindings.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'key-bindings.c') diff --git a/key-bindings.c b/key-bindings.c index d07c7b49..9bc61b62 100644 --- a/key-bindings.c +++ b/key-bindings.c @@ -396,7 +396,7 @@ key_bindings_read_only(struct cmdq_item *item, __unused void *data) void key_bindings_dispatch(struct key_binding *bd, struct client *c, - struct mouse_event *m) + struct mouse_event *m, struct cmd_find_state *fs) { struct cmd *cmd; int readonly; @@ -409,5 +409,5 @@ key_bindings_dispatch(struct key_binding *bd, struct client *c, if (!readonly && (c->flags & CLIENT_READONLY)) cmdq_append(c, cmdq_get_callback(key_bindings_read_only, NULL)); else - cmdq_append(c, cmdq_get_command(bd->cmdlist, NULL, m, 0)); + cmdq_append(c, cmdq_get_command(bd->cmdlist, fs, m, 0)); } -- cgit