2009-12-04 22:11:23 +00:00
|
|
|
/* $Id: cmd-set-window-option.c,v 1.43 2009-12-04 22:11:23 tcunha Exp $ */
|
2008-06-04 17:54:27 +00:00
|
|
|
|
|
|
|
/*
|
2008-12-08 16:19:51 +00:00
|
|
|
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
|
2008-06-04 17:54:27 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
2009-12-04 22:11:23 +00:00
|
|
|
* Set a window option. This is just an alias for set-option -w.
|
2008-06-04 17:54:27 +00:00
|
|
|
*/
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int cmd_set_window_option_exec(struct cmd *, struct cmd_ctx *);
|
2008-06-04 17:54:27 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_set_window_option_entry = {
|
|
|
|
"set-window-option", "setw",
|
2009-08-11 14:42:59 +00:00
|
|
|
"[-agu] " CMD_TARGET_WINDOW_USAGE " option [value]",
|
2009-11-14 17:56:39 +00:00
|
|
|
CMD_ARG12, "agu",
|
2008-06-05 21:25:00 +00:00
|
|
|
NULL,
|
2009-08-11 14:42:59 +00:00
|
|
|
cmd_target_parse,
|
2008-06-04 17:54:27 +00:00
|
|
|
cmd_set_window_option_exec,
|
2009-08-11 14:42:59 +00:00
|
|
|
cmd_target_free,
|
|
|
|
cmd_target_print
|
2008-06-04 17:54:27 +00:00
|
|
|
};
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int
|
2008-06-05 21:25:00 +00:00
|
|
|
cmd_set_window_option_exec(struct cmd *self, struct cmd_ctx *ctx)
|
2008-06-04 17:54:27 +00:00
|
|
|
{
|
2009-08-11 14:42:59 +00:00
|
|
|
struct cmd_target_data *data = self->data;
|
2009-11-19 22:35:10 +00:00
|
|
|
|
2009-12-04 22:11:23 +00:00
|
|
|
cmd_set_flag(&data->chflags, 'w');
|
|
|
|
return (cmd_set_option_entry.exec(self, ctx));
|
2008-06-05 17:12:11 +00:00
|
|
|
}
|