mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling.
This commit is contained in:
@ -37,7 +37,7 @@ const struct cmd_entry cmd_select_layout_entry = {
|
||||
|
||||
.tflag = CMD_WINDOW,
|
||||
|
||||
.flags = 0,
|
||||
.flags = CMD_AFTERHOOK,
|
||||
.exec = cmd_select_layout_exec
|
||||
};
|
||||
|
||||
@ -50,7 +50,7 @@ const struct cmd_entry cmd_next_layout_entry = {
|
||||
|
||||
.tflag = CMD_WINDOW,
|
||||
|
||||
.flags = 0,
|
||||
.flags = CMD_AFTERHOOK,
|
||||
.exec = cmd_select_layout_exec
|
||||
};
|
||||
|
||||
@ -63,7 +63,7 @@ const struct cmd_entry cmd_previous_layout_entry = {
|
||||
|
||||
.tflag = CMD_WINDOW,
|
||||
|
||||
.flags = 0,
|
||||
.flags = CMD_AFTERHOOK,
|
||||
.exec = cmd_select_layout_exec
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user