123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- #include <sys/types.h>
- #include "tmux.h"
- enum cmd_retval cmd_display_panes_exec(struct cmd *, struct cmd_q *);
- const struct cmd_entry cmd_display_panes_entry = {
- .name = "display-panes",
- .alias = "displayp",
- .args = { "t:", 0, 0 },
- .usage = CMD_TARGET_CLIENT_USAGE,
- .tflag = CMD_CLIENT,
- .flags = 0,
- .exec = cmd_display_panes_exec
- };
- enum cmd_retval
- cmd_display_panes_exec(__unused struct cmd *self, struct cmd_q *cmdq)
- {
- server_set_identify(cmdq->state.c);
- return (CMD_RETURN_NORMAL);
- }
|