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-list-panes.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-list-panes.c')
-rw-r--r-- | cmd-list-panes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-list-panes.c b/cmd-list-panes.c index 9d78589a..20663fd1 100644 --- a/cmd-list-panes.c +++ b/cmd-list-panes.c @@ -43,7 +43,7 @@ const struct cmd_entry cmd_list_panes_entry = { .tflag = CMD_WINDOW, - .flags = 0, + .flags = CMD_AFTERHOOK, .exec = cmd_list_panes_exec }; |