diff options
author | nicm <nicm> | 2016-10-14 22:14:22 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-10-14 22:14:22 +0000 |
commit | ed971268be7cfd5a4a8223211401654b30a57cbd (patch) | |
tree | ced6a43b231a88614d2419c9b16b8dc914e82b61 /cmd-paste-buffer.c | |
parent | d413a945acd9ffbc5d34a4d459b82721e648541d (diff) | |
download | rtmux-ed971268be7cfd5a4a8223211401654b30a57cbd.tar.gz rtmux-ed971268be7cfd5a4a8223211401654b30a57cbd.tar.bz2 rtmux-ed971268be7cfd5a4a8223211401654b30a57cbd.zip |
Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling.
Diffstat (limited to 'cmd-paste-buffer.c')
-rw-r--r-- | cmd-paste-buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-paste-buffer.c b/cmd-paste-buffer.c index 5f8b46c4..5b4a372e 100644 --- a/cmd-paste-buffer.c +++ b/cmd-paste-buffer.c @@ -40,7 +40,7 @@ const struct cmd_entry cmd_paste_buffer_entry = { .tflag = CMD_PANE, - .flags = 0, + .flags = CMD_AFTERHOOK, .exec = cmd_paste_buffer_exec }; |