diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-18 18:31:45 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-18 18:31:45 +0000 |
commit | d1a5fde3d074a0aa6d87f3f7494f01554eff17c6 (patch) | |
tree | 9d179af30022cd2c9b326d7f0ba69883930648ed /cmd-previous-window.c | |
parent | 99bb795581de0468946fb8d86ea186f8a021952e (diff) | |
download | rtmux-d1a5fde3d074a0aa6d87f3f7494f01554eff17c6.tar.gz rtmux-d1a5fde3d074a0aa6d87f3f7494f01554eff17c6.tar.bz2 rtmux-d1a5fde3d074a0aa6d87f3f7494f01554eff17c6.zip |
-a flags to next/previous window.
Diffstat (limited to 'cmd-previous-window.c')
-rw-r--r-- | cmd-previous-window.c | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/cmd-previous-window.c b/cmd-previous-window.c index 67b94b11..1c4148df 100644 --- a/cmd-previous-window.c +++ b/cmd-previous-window.c @@ -1,4 +1,4 @@ -/* $Id: cmd-previous-window.c,v 1.13 2009-01-14 22:13:30 nicm Exp $ */ +/* $Id: cmd-previous-window.c,v 1.14 2009-01-18 18:31:45 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -24,13 +24,14 @@ * Move to previous window. */ +void cmd_previous_window_init(struct cmd *, int); void cmd_previous_window_exec(struct cmd *, struct cmd_ctx *); const struct cmd_entry cmd_previous_window_entry = { "previous-window", "prev", CMD_TARGET_SESSION_USAGE, - CMD_CANREPEAT, - cmd_target_init, + CMD_CANREPEAT|CMD_AFLAG, + cmd_previous_window_init, cmd_target_parse, cmd_previous_window_exec, cmd_target_send, @@ -40,15 +41,32 @@ const struct cmd_entry cmd_previous_window_entry = { }; void +cmd_previous_window_init(struct cmd *self, int key) +{ + struct cmd_target_data *data; + + cmd_target_init(self, key); + data = self->data; + + if (key == KEYC_ADDESC('p')) + data->flags |= CMD_AFLAG; +} + +void cmd_previous_window_exec(struct cmd *self, struct cmd_ctx *ctx) { struct cmd_target_data *data = self->data; struct session *s; + int activity; if ((s = cmd_find_session(ctx, data->target)) == NULL) return; - if (session_previous(s) == 0) + activity = 0; + if (data->flags & CMD_AFLAG) + activity = 1; + + if (session_previous(s, activity) == 0) server_redraw_session(s); else ctx->error(ctx, "no previous window"); |