aboutsummaryrefslogtreecommitdiff
path: root/cmd-set-window-option.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd-set-window-option.c')
-rw-r--r--cmd-set-window-option.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/cmd-set-window-option.c b/cmd-set-window-option.c
index 559d6485..3a750476 100644
--- a/cmd-set-window-option.c
+++ b/cmd-set-window-option.c
@@ -28,20 +28,19 @@ int cmd_set_window_option_exec(struct cmd *, struct cmd_ctx *);
const struct cmd_entry cmd_set_window_option_entry = {
"set-window-option", "setw",
+ "agt:u", 1, 2,
"[-agu] " CMD_TARGET_WINDOW_USAGE " option [value]",
- CMD_ARG12, "agu",
+ 0,
NULL,
- cmd_target_parse,
- cmd_set_window_option_exec,
- cmd_target_free,
- cmd_target_print
+ NULL,
+ cmd_set_window_option_exec
};
int
cmd_set_window_option_exec(struct cmd *self, struct cmd_ctx *ctx)
{
- struct cmd_target_data *data = self->data;
+ struct args *args = self->args;
- cmd_set_flag(&data->chflags, 'w');
+ args_set(args, 'w', NULL);
return (cmd_set_option_entry.exec(self, ctx));
}