2009-08-31 22:30:15 +00:00
|
|
|
/* $Id: cmd-set-option.c,v 1.77 2009-08-31 22:30:15 tcunha Exp $ */
|
2007-10-04 10:11:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* 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 <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set an option.
|
|
|
|
*/
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int cmd_set_option_exec(struct cmd *, struct cmd_ctx *);
|
2007-10-04 10:11:32 +00:00
|
|
|
|
|
|
|
const struct cmd_entry cmd_set_option_entry = {
|
2008-06-02 18:08:17 +00:00
|
|
|
"set-option", "set",
|
2009-08-11 14:42:59 +00:00
|
|
|
"[-agu] " CMD_TARGET_SESSION_USAGE " option [value]",
|
|
|
|
CMD_ARG12, CMD_CHFLAG('a')|CMD_CHFLAG('g')|CMD_CHFLAG('u'),
|
2008-06-05 21:25:00 +00:00
|
|
|
NULL,
|
2009-08-11 14:42:59 +00:00
|
|
|
cmd_target_parse,
|
2007-12-06 09:46:23 +00:00
|
|
|
cmd_set_option_exec,
|
2009-08-11 14:42:59 +00:00
|
|
|
cmd_target_free,
|
|
|
|
cmd_target_print
|
2007-10-04 10:11:32 +00:00
|
|
|
};
|
|
|
|
|
2009-02-13 21:39:45 +00:00
|
|
|
const char *set_option_status_keys_list[] = {
|
|
|
|
"emacs", "vi", NULL
|
|
|
|
};
|
2009-07-20 16:01:07 +00:00
|
|
|
const char *set_option_status_justify_list[] = {
|
|
|
|
"left", "centre", "right", NULL
|
|
|
|
};
|
2008-07-02 21:22:57 +00:00
|
|
|
const char *set_option_bell_action_list[] = {
|
|
|
|
"none", "any", "current", NULL
|
|
|
|
};
|
2009-07-15 17:44:47 +00:00
|
|
|
const struct set_option_entry set_option_table[] = {
|
2009-08-16 19:16:27 +00:00
|
|
|
{ "base-index", SET_OPTION_NUMBER, 0, INT_MAX, NULL },
|
2008-07-02 21:22:57 +00:00
|
|
|
{ "bell-action", SET_OPTION_CHOICE, 0, 0, set_option_bell_action_list },
|
2008-06-23 22:12:29 +00:00
|
|
|
{ "buffer-limit", SET_OPTION_NUMBER, 1, INT_MAX, NULL },
|
|
|
|
{ "default-command", SET_OPTION_STRING, 0, 0, NULL },
|
2009-01-10 19:37:35 +00:00
|
|
|
{ "default-path", SET_OPTION_STRING, 0, 0, NULL },
|
2009-07-12 17:07:58 +00:00
|
|
|
{ "default-terminal", SET_OPTION_STRING, 0, 0, NULL },
|
2009-08-31 22:30:15 +00:00
|
|
|
{ "display-panes-colour", SET_OPTION_COLOUR, 0, 0, NULL },
|
|
|
|
{ "display-panes-time", SET_OPTION_NUMBER, 1, INT_MAX, NULL },
|
2009-01-23 20:48:19 +00:00
|
|
|
{ "display-time", SET_OPTION_NUMBER, 1, INT_MAX, NULL },
|
|
|
|
{ "history-limit", SET_OPTION_NUMBER, 0, INT_MAX, NULL },
|
2009-01-14 19:23:41 +00:00
|
|
|
{ "lock-after-time", SET_OPTION_NUMBER, 0, INT_MAX, NULL },
|
Allow status, mode and message attributes to be changed by three new options: status-attr, mode-attr, message-attr. A comma-separataed list is accepted containing: bright, dim, underscore, blink, reverse, hidden, italics, for example: set -g status-attr bright,blink
From Josh Elsasser, thanks!
2009-01-27 20:22:33 +00:00
|
|
|
{ "message-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL },
|
2008-12-08 16:19:51 +00:00
|
|
|
{ "message-bg", SET_OPTION_COLOUR, 0, 0, NULL },
|
|
|
|
{ "message-fg", SET_OPTION_COLOUR, 0, 0, NULL },
|
2008-06-23 22:12:29 +00:00
|
|
|
{ "prefix", SET_OPTION_KEY, 0, 0, NULL },
|
2009-01-14 22:13:30 +00:00
|
|
|
{ "repeat-time", SET_OPTION_NUMBER, 0, SHRT_MAX, NULL },
|
2009-03-21 12:44:06 +00:00
|
|
|
{ "set-remain-on-exit", SET_OPTION_FLAG, 0, 0, NULL },
|
2008-06-23 22:12:29 +00:00
|
|
|
{ "set-titles", SET_OPTION_FLAG, 0, 0, NULL },
|
|
|
|
{ "status", SET_OPTION_FLAG, 0, 0, NULL },
|
Allow status, mode and message attributes to be changed by three new options: status-attr, mode-attr, message-attr. A comma-separataed list is accepted containing: bright, dim, underscore, blink, reverse, hidden, italics, for example: set -g status-attr bright,blink
From Josh Elsasser, thanks!
2009-01-27 20:22:33 +00:00
|
|
|
{ "status-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL },
|
2008-06-23 22:12:29 +00:00
|
|
|
{ "status-bg", SET_OPTION_COLOUR, 0, 0, NULL },
|
|
|
|
{ "status-fg", SET_OPTION_COLOUR, 0, 0, NULL },
|
|
|
|
{ "status-interval", SET_OPTION_NUMBER, 0, INT_MAX, NULL },
|
2009-07-20 16:01:07 +00:00
|
|
|
{ "status-justify",
|
|
|
|
SET_OPTION_CHOICE, 0, 0, set_option_status_justify_list },
|
2009-02-13 21:39:45 +00:00
|
|
|
{ "status-keys", SET_OPTION_CHOICE, 0, 0, set_option_status_keys_list },
|
2008-06-23 22:12:29 +00:00
|
|
|
{ "status-left", SET_OPTION_STRING, 0, 0, NULL },
|
2009-08-09 17:40:17 +00:00
|
|
|
{ "status-left-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL },
|
|
|
|
{ "status-left-bg", SET_OPTION_COLOUR, 0, 0, NULL },
|
|
|
|
{ "status-left-fg", SET_OPTION_COLOUR, 0, 0, NULL },
|
2008-12-05 20:04:06 +00:00
|
|
|
{ "status-left-length", SET_OPTION_NUMBER, 0, SHRT_MAX, NULL },
|
2008-12-08 16:19:51 +00:00
|
|
|
{ "status-right", SET_OPTION_STRING, 0, 0, NULL },
|
2009-08-09 17:40:17 +00:00
|
|
|
{ "status-right-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL },
|
|
|
|
{ "status-right-bg", SET_OPTION_COLOUR, 0, 0, NULL },
|
|
|
|
{ "status-right-fg", SET_OPTION_COLOUR, 0, 0, NULL },
|
2008-12-05 20:04:06 +00:00
|
|
|
{ "status-right-length", SET_OPTION_NUMBER, 0, SHRT_MAX, NULL },
|
2009-08-09 15:26:24 +00:00
|
|
|
{ "status-utf8", SET_OPTION_FLAG, 0, 0, NULL },
|
|
|
|
{ "terminal-overrides", SET_OPTION_STRING, 0, 0, NULL },
|
2009-08-09 17:48:55 +00:00
|
|
|
{ "update-environment", SET_OPTION_STRING, 0, 0, NULL },
|
2009-07-19 14:35:56 +00:00
|
|
|
{ "visual-activity", SET_OPTION_FLAG, 0, 0, NULL },
|
|
|
|
{ "visual-bell", SET_OPTION_FLAG, 0, 0, NULL },
|
|
|
|
{ "visual-content", SET_OPTION_FLAG, 0, 0, NULL },
|
2009-07-15 17:44:47 +00:00
|
|
|
{ NULL, 0, 0, 0, NULL }
|
2008-06-23 07:41:21 +00:00
|
|
|
};
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
int
|
2008-06-23 07:41:21 +00:00
|
|
|
cmd_set_option_exec(struct cmd *self, struct cmd_ctx *ctx)
|
2007-10-04 10:11:32 +00:00
|
|
|
{
|
2009-08-11 14:42:59 +00:00
|
|
|
struct cmd_target_data *data = self->data;
|
2008-06-03 21:42:37 +00:00
|
|
|
struct session *s;
|
2008-06-23 07:41:21 +00:00
|
|
|
struct client *c;
|
2008-06-03 21:42:37 +00:00
|
|
|
struct options *oo;
|
2009-07-15 17:44:47 +00:00
|
|
|
const struct set_option_entry *entry, *opt;
|
2007-10-30 10:59:43 +00:00
|
|
|
u_int i;
|
2007-10-04 10:11:32 +00:00
|
|
|
|
2009-07-14 06:43:33 +00:00
|
|
|
if (data->chflags & CMD_CHFLAG('g'))
|
2009-07-08 18:01:31 +00:00
|
|
|
oo = &global_s_options;
|
2008-12-08 16:19:51 +00:00
|
|
|
else {
|
|
|
|
if ((s = cmd_find_session(ctx, data->target)) == NULL)
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2008-06-03 21:42:37 +00:00
|
|
|
oo = &s->options;
|
2008-12-08 16:19:51 +00:00
|
|
|
}
|
2008-06-03 21:42:37 +00:00
|
|
|
|
2009-08-11 14:42:59 +00:00
|
|
|
if (*data->arg == '\0') {
|
2007-10-04 10:11:32 +00:00
|
|
|
ctx->error(ctx, "invalid option");
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2007-10-04 10:11:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-23 07:41:21 +00:00
|
|
|
entry = NULL;
|
2009-07-15 17:44:47 +00:00
|
|
|
for (opt = set_option_table; opt->name != NULL; opt++) {
|
2009-08-11 14:42:59 +00:00
|
|
|
if (strncmp(opt->name, data->arg, strlen(data->arg)) != 0)
|
2008-06-23 07:41:21 +00:00
|
|
|
continue;
|
|
|
|
if (entry != NULL) {
|
2009-08-11 14:42:59 +00:00
|
|
|
ctx->error(ctx, "ambiguous option: %s", data->arg);
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2007-10-12 12:08:51 +00:00
|
|
|
}
|
2009-07-15 17:44:47 +00:00
|
|
|
entry = opt;
|
2008-06-03 21:42:37 +00:00
|
|
|
|
2008-07-19 10:07:50 +00:00
|
|
|
/* Bail now if an exact match. */
|
2009-08-11 14:42:59 +00:00
|
|
|
if (strcmp(entry->name, data->arg) == 0)
|
2008-07-19 10:07:50 +00:00
|
|
|
break;
|
2008-06-23 07:41:21 +00:00
|
|
|
}
|
|
|
|
if (entry == NULL) {
|
2009-08-11 14:42:59 +00:00
|
|
|
ctx->error(ctx, "unknown option: %s", data->arg);
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2008-06-23 07:41:21 +00:00
|
|
|
}
|
2008-06-03 21:42:37 +00:00
|
|
|
|
2009-07-14 06:43:33 +00:00
|
|
|
if (data->chflags & CMD_CHFLAG('u')) {
|
|
|
|
if (data->chflags & CMD_CHFLAG('g')) {
|
2009-01-10 01:51:22 +00:00
|
|
|
ctx->error(ctx,
|
2009-01-07 19:53:17 +00:00
|
|
|
"can't unset global option: %s", entry->name);
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2009-01-07 19:53:17 +00:00
|
|
|
}
|
2009-08-11 14:42:59 +00:00
|
|
|
if (data->arg2 != NULL) {
|
2009-01-07 19:53:17 +00:00
|
|
|
ctx->error(ctx,
|
|
|
|
"value passed to unset option: %s", entry->name);
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2009-01-07 19:53:17 +00:00
|
|
|
}
|
2008-06-03 21:42:37 +00:00
|
|
|
|
2009-01-30 00:24:49 +00:00
|
|
|
options_remove(oo, entry->name);
|
2009-01-07 19:53:17 +00:00
|
|
|
ctx->info(ctx, "unset option: %s", entry->name);
|
|
|
|
} else {
|
|
|
|
switch (entry->type) {
|
|
|
|
case SET_OPTION_STRING:
|
2009-08-09 16:48:34 +00:00
|
|
|
set_option_string(ctx, oo, entry,
|
2009-08-11 14:42:59 +00:00
|
|
|
data->arg2, data->chflags & CMD_CHFLAG('a'));
|
2009-01-07 19:53:17 +00:00
|
|
|
break;
|
|
|
|
case SET_OPTION_NUMBER:
|
2009-08-11 14:42:59 +00:00
|
|
|
set_option_number(ctx, oo, entry, data->arg2);
|
2009-01-07 19:53:17 +00:00
|
|
|
break;
|
|
|
|
case SET_OPTION_KEY:
|
2009-08-11 14:42:59 +00:00
|
|
|
set_option_key(ctx, oo, entry, data->arg2);
|
2009-01-07 19:53:17 +00:00
|
|
|
break;
|
|
|
|
case SET_OPTION_COLOUR:
|
2009-08-11 14:42:59 +00:00
|
|
|
set_option_colour(ctx, oo, entry, data->arg2);
|
2009-01-07 19:53:17 +00:00
|
|
|
break;
|
Allow status, mode and message attributes to be changed by three new options: status-attr, mode-attr, message-attr. A comma-separataed list is accepted containing: bright, dim, underscore, blink, reverse, hidden, italics, for example: set -g status-attr bright,blink
From Josh Elsasser, thanks!
2009-01-27 20:22:33 +00:00
|
|
|
case SET_OPTION_ATTRIBUTES:
|
2009-08-11 14:42:59 +00:00
|
|
|
set_option_attributes(ctx, oo, entry, data->arg2);
|
Allow status, mode and message attributes to be changed by three new options: status-attr, mode-attr, message-attr. A comma-separataed list is accepted containing: bright, dim, underscore, blink, reverse, hidden, italics, for example: set -g status-attr bright,blink
From Josh Elsasser, thanks!
2009-01-27 20:22:33 +00:00
|
|
|
break;
|
2009-01-07 19:53:17 +00:00
|
|
|
case SET_OPTION_FLAG:
|
2009-08-11 14:42:59 +00:00
|
|
|
set_option_flag(ctx, oo, entry, data->arg2);
|
2009-01-07 19:53:17 +00:00
|
|
|
break;
|
|
|
|
case SET_OPTION_CHOICE:
|
2009-08-11 14:42:59 +00:00
|
|
|
set_option_choice(ctx, oo, entry, data->arg2);
|
2009-01-07 19:53:17 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-01-10 01:51:22 +00:00
|
|
|
|
2008-06-23 07:41:21 +00:00
|
|
|
recalculate_sizes();
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c != NULL && c->session != NULL)
|
|
|
|
server_redraw_client(c);
|
|
|
|
}
|
2008-06-03 21:42:37 +00:00
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
return (0);
|
2008-06-23 07:41:21 +00:00
|
|
|
}
|