2009-11-19 22:35:10 +00:00
|
|
|
/* $Id: cmd-set-window-option.c,v 1.42 2009-11-19 22:35:10 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 <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "tmux.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set a window option.
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2008-12-08 16:19:51 +00:00
|
|
|
const char *set_option_mode_keys_list[] = {
|
|
|
|
"emacs", "vi", NULL
|
|
|
|
};
|
2009-01-10 19:35:40 +00:00
|
|
|
const char *set_option_clock_mode_style_list[] = {
|
|
|
|
"12", "24", NULL
|
|
|
|
};
|
2009-07-15 17:44:47 +00:00
|
|
|
const struct set_option_entry set_window_option_table[] = {
|
2008-12-08 16:19:51 +00:00
|
|
|
{ "aggressive-resize", SET_OPTION_FLAG, 0, 0, NULL },
|
2009-01-20 19:35:03 +00:00
|
|
|
{ "automatic-rename", SET_OPTION_FLAG, 0, 0, NULL },
|
2009-01-10 19:35:40 +00:00
|
|
|
{ "clock-mode-colour", SET_OPTION_COLOUR, 0, 0, NULL },
|
|
|
|
{ "clock-mode-style",
|
|
|
|
SET_OPTION_CHOICE, 0, 0, set_option_clock_mode_style_list },
|
2008-12-08 16:19:51 +00:00
|
|
|
{ "force-height", SET_OPTION_NUMBER, 0, INT_MAX, NULL },
|
|
|
|
{ "force-width", SET_OPTION_NUMBER, 0, INT_MAX, NULL },
|
2009-07-15 17:44:25 +00:00
|
|
|
{ "main-pane-height", SET_OPTION_NUMBER, 1, INT_MAX, NULL },
|
2009-05-18 21:55:53 +00:00
|
|
|
{ "main-pane-width", SET_OPTION_NUMBER, 1, 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
|
|
|
{ "mode-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL },
|
2008-12-08 16:19:51 +00:00
|
|
|
{ "mode-bg", SET_OPTION_COLOUR, 0, 0, NULL },
|
|
|
|
{ "mode-fg", SET_OPTION_COLOUR, 0, 0, NULL },
|
|
|
|
{ "mode-keys", SET_OPTION_CHOICE, 0, 0, set_option_mode_keys_list },
|
2009-07-30 20:32:05 +00:00
|
|
|
{ "mode-mouse", SET_OPTION_FLAG, 0, 0, NULL },
|
2008-12-08 16:19:51 +00:00
|
|
|
{ "monitor-activity", SET_OPTION_FLAG, 0, 0, NULL },
|
2009-05-19 13:32:55 +00:00
|
|
|
{ "monitor-content", SET_OPTION_STRING, 0, 0, NULL },
|
2008-12-08 16:19:51 +00:00
|
|
|
{ "remain-on-exit", SET_OPTION_FLAG, 0, 0, NULL },
|
2009-10-09 13:07:04 +00:00
|
|
|
{ "synchronize-panes", SET_OPTION_FLAG, 0, 0, NULL },
|
2008-12-08 16:19:51 +00:00
|
|
|
{ "utf8", SET_OPTION_FLAG, 0, 0, NULL },
|
2009-01-30 00:24:49 +00:00
|
|
|
{ "window-status-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL },
|
|
|
|
{ "window-status-bg", SET_OPTION_COLOUR, 0, 0, NULL },
|
2009-07-20 15:57:05 +00:00
|
|
|
{ "window-status-current-attr", SET_OPTION_ATTRIBUTES, 0, 0, NULL },
|
|
|
|
{ "window-status-current-bg", SET_OPTION_COLOUR, 0, 0, NULL },
|
|
|
|
{ "window-status-current-fg", SET_OPTION_COLOUR, 0, 0, NULL },
|
2009-11-19 22:35:10 +00:00
|
|
|
{ "window-status-current-format", SET_OPTION_STRING, 0, 0, NULL },
|
2009-01-30 00:24:49 +00:00
|
|
|
{ "window-status-fg", SET_OPTION_COLOUR, 0, 0, NULL },
|
2009-11-19 22:35:10 +00:00
|
|
|
{ "window-status-format", SET_OPTION_STRING, 0, 0, NULL },
|
2009-01-09 16:45:58 +00:00
|
|
|
{ "xterm-keys", SET_OPTION_FLAG, 0, 0, NULL },
|
2009-07-15 17:44:47 +00:00
|
|
|
{ NULL, 0, 0, 0, NULL }
|
2008-12-08 16:19:51 +00:00
|
|
|
};
|
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;
|
2008-12-08 16:19:51 +00:00
|
|
|
struct winlink *wl;
|
|
|
|
struct client *c;
|
|
|
|
struct options *oo;
|
2009-07-15 17:44:47 +00:00
|
|
|
const struct set_option_entry *entry, *opt;
|
2009-11-19 22:35:10 +00:00
|
|
|
struct jobs *jobs;
|
|
|
|
struct job *job, *nextjob;
|
2008-12-08 16:19:51 +00:00
|
|
|
u_int i;
|
2009-11-19 22:35:10 +00:00
|
|
|
int try_again;
|
2008-12-08 16:19:51 +00:00
|
|
|
|
2009-11-14 17:56:39 +00:00
|
|
|
if (cmd_check_flag(data->chflags, 'g'))
|
2009-07-08 18:01:31 +00:00
|
|
|
oo = &global_w_options;
|
2008-12-08 16:19:51 +00:00
|
|
|
else {
|
|
|
|
if ((wl = cmd_find_window(ctx, data->target, NULL)) == NULL)
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2008-12-08 16:19:51 +00:00
|
|
|
oo = &wl->window->options;
|
|
|
|
}
|
2008-06-04 17:54:27 +00:00
|
|
|
|
2009-08-11 14:42:59 +00:00
|
|
|
if (*data->arg == '\0') {
|
2008-06-04 17:54:27 +00:00
|
|
|
ctx->error(ctx, "invalid option");
|
2009-01-19 18:23:40 +00:00
|
|
|
return (-1);
|
2008-06-04 17:54:27 +00:00
|
|
|
}
|
|
|
|
|
2008-12-08 16:19:51 +00:00
|
|
|
entry = NULL;
|
2009-07-15 17:44:47 +00:00
|
|
|
for (opt = set_window_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-12-08 16:19:51 +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);
|
2008-06-04 17:54:27 +00:00
|
|
|
}
|
2009-07-15 17:44:47 +00:00
|
|
|
entry = opt;
|
2008-06-04 17:54:27 +00:00
|
|
|
|
2008-12-08 16:19:51 +00:00
|
|
|
/* Bail now if an exact match. */
|
2009-08-11 14:42:59 +00:00
|
|
|
if (strcmp(entry->name, data->arg) == 0)
|
2008-12-08 16:19:51 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
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-04 17:54:27 +00:00
|
|
|
}
|
|
|
|
|
2009-11-14 17:56:39 +00:00
|
|
|
if (cmd_check_flag(data->chflags, 'u')) {
|
|
|
|
if (cmd_check_flag(data->chflags, '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-05 17:12:11 +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-11-14 17:56:39 +00:00
|
|
|
data->arg2, cmd_check_flag(data->chflags, '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;
|
2009-09-22 14:22:21 +00:00
|
|
|
case SET_OPTION_KEYS:
|
|
|
|
set_option_keys(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-12-08 16:19:51 +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-05 17:12:11 +00:00
|
|
|
|
2009-11-19 22:35:10 +00:00
|
|
|
/*
|
|
|
|
* Special-case: kill all persistent jobs if window-status-format has
|
|
|
|
* changed. Persistent jobs are only used by the status line at the
|
|
|
|
* moment so this works XXX.
|
|
|
|
*/
|
|
|
|
if (strcmp(entry->name, "window-status-format") == 0) {
|
|
|
|
for (i = 0; i < ARRAY_LENGTH(&clients); i++) {
|
|
|
|
c = ARRAY_ITEM(&clients, i);
|
|
|
|
if (c == NULL || c->session == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
jobs = &c->status_jobs;
|
|
|
|
do {
|
|
|
|
try_again = 0;
|
|
|
|
job = RB_ROOT(jobs);
|
|
|
|
while (job != NULL) {
|
|
|
|
nextjob = RB_NEXT(jobs, jobs, job);
|
|
|
|
if (job->flags & JOB_PERSIST) {
|
|
|
|
job_remove(jobs, job);
|
|
|
|
try_again = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
job = nextjob;
|
|
|
|
}
|
|
|
|
} while (try_again);
|
|
|
|
server_redraw_client(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-19 18:23:40 +00:00
|
|
|
return (0);
|
2008-06-05 17:12:11 +00:00
|
|
|
}
|