From ed971268be7cfd5a4a8223211401654b30a57cbd Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 14 Oct 2016 22:14:22 +0000 Subject: Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling. --- cmd-send-keys.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cmd-send-keys.c') diff --git a/cmd-send-keys.c b/cmd-send-keys.c index e3b8d6e4..062a13d7 100644 --- a/cmd-send-keys.c +++ b/cmd-send-keys.c @@ -38,7 +38,7 @@ const struct cmd_entry cmd_send_keys_entry = { .tflag = CMD_PANE, - .flags = 0, + .flags = CMD_AFTERHOOK, .exec = cmd_send_keys_exec }; @@ -51,7 +51,7 @@ const struct cmd_entry cmd_send_prefix_entry = { .tflag = CMD_PANE, - .flags = 0, + .flags = CMD_AFTERHOOK, .exec = cmd_send_keys_exec }; -- cgit