summaryrefslogtreecommitdiffstats
path: root/cmd-send-keys.c
diff options
context:
space:
mode:
authornicm <nicm>2016-10-14 22:14:22 +0000
committernicm <nicm>2016-10-14 22:14:22 +0000
commited971268be7cfd5a4a8223211401654b30a57cbd (patch)
treeced6a43b231a88614d2419c9b16b8dc914e82b61 /cmd-send-keys.c
parentd413a945acd9ffbc5d34a4d459b82721e648541d (diff)
Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling.
Diffstat (limited to 'cmd-send-keys.c')
-rw-r--r--cmd-send-keys.c4
1 files changed, 2 insertions, 2 deletions
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
};