summaryrefslogtreecommitdiffstats
path: root/cmd-rotate-window.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd-rotate-window.c')
-rw-r--r--cmd-rotate-window.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd-rotate-window.c b/cmd-rotate-window.c
index 52b752e9..3f40603a 100644
--- a/cmd-rotate-window.c
+++ b/cmd-rotate-window.c
@@ -30,7 +30,7 @@ int cmd_rotate_window_exec(struct cmd *, struct cmd_ctx *);
const struct cmd_entry cmd_rotate_window_entry = {
"rotate-window", "rotatew",
"[-DU] " CMD_TARGET_WINDOW_USAGE,
- CMD_BIGUFLAG|CMD_BIGDFLAG,
+ 0, CMD_CHFLAG('D')|CMD_CHFLAG('U'),
cmd_rotate_window_init,
cmd_target_parse,
cmd_rotate_window_exec,
@@ -49,7 +49,7 @@ cmd_rotate_window_init(struct cmd *self, int key)
data = self->data;
if (key == KEYC_ADDESC('o'))
- data->flags |= CMD_BIGDFLAG;
+ data->chflags |= CMD_CHFLAG('D');
}
int
@@ -66,7 +66,7 @@ cmd_rotate_window_exec(struct cmd *self, struct cmd_ctx *ctx)
return (-1);
w = wl->window;
- if (data->flags & CMD_BIGDFLAG) {
+ if (data->chflags & CMD_CHFLAG('D')) {
wp = TAILQ_LAST(&w->panes, window_panes);
TAILQ_REMOVE(&w->panes, wp, entry);
TAILQ_INSERT_HEAD(&w->panes, wp, entry);