summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/cmd-show-options.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2009-09-21 14:46:48 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2009-09-21 14:46:48 +0000
commit246df1c63ff3d86e8277eccfea3f3a999f2f4171 (patch)
tree84f8197637ee362eefab3181f8f64d1b23608702 /usr.bin/tmux/cmd-show-options.c
parentcb849aca5e5c27b2383cb38bb4d0ab53d24765f8 (diff)
Move common code from show-options and show-window-options into a function.
Diffstat (limited to 'usr.bin/tmux/cmd-show-options.c')
-rw-r--r--usr.bin/tmux/cmd-show-options.c48
1 files changed, 6 insertions, 42 deletions
diff --git a/usr.bin/tmux/cmd-show-options.c b/usr.bin/tmux/cmd-show-options.c
index b3bd820f04d..ae92f60a4f7 100644
--- a/usr.bin/tmux/cmd-show-options.c
+++ b/usr.bin/tmux/cmd-show-options.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-show-options.c,v 1.5 2009/07/26 12:58:44 nicm Exp $ */
+/* $OpenBSD: cmd-show-options.c,v 1.6 2009/09/21 14:46:47 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -46,9 +46,9 @@ cmd_show_options_exec(struct cmd *self, struct cmd_ctx *ctx)
struct cmd_target_data *data = self->data;
struct session *s;
struct options *oo;
+ struct options_entry *o;
const struct set_option_entry *entry;
- char *vs;
- long long vn;
+ const char *optval;
if (data->chflags & CMD_CHFLAG('g'))
oo = &global_s_options;
@@ -59,46 +59,10 @@ cmd_show_options_exec(struct cmd *self, struct cmd_ctx *ctx)
}
for (entry = set_option_table; entry->name != NULL; entry++) {
- if (options_find1(oo, entry->name) == NULL)
+ if ((o = options_find1(oo, entry->name)) == NULL)
continue;
-
- switch (entry->type) {
- case SET_OPTION_STRING:
- vs = options_get_string(oo, entry->name);
- ctx->print(ctx, "%s \"%s\"", entry->name, vs);
- break;
- case SET_OPTION_NUMBER:
- vn = options_get_number(oo, entry->name);
- ctx->print(ctx, "%s %lld", entry->name, vn);
- break;
- case SET_OPTION_KEY:
- vn = options_get_number(oo, entry->name);
- ctx->print(ctx, "%s %s",
- entry->name, key_string_lookup_key(vn));
- break;
- case SET_OPTION_COLOUR:
- vn = options_get_number(oo, entry->name);
- ctx->print(ctx, "%s %s",
- entry->name, colour_tostring(vn));
- break;
- case SET_OPTION_ATTRIBUTES:
- vn = options_get_number(oo, entry->name);
- ctx->print(ctx, "%s %s",
- entry->name, attributes_tostring(vn));
- break;
- case SET_OPTION_FLAG:
- vn = options_get_number(oo, entry->name);
- if (vn)
- ctx->print(ctx, "%s on", entry->name);
- else
- ctx->print(ctx, "%s off", entry->name);
- break;
- case SET_OPTION_CHOICE:
- vn = options_get_number(oo, entry->name);
- ctx->print(ctx, "%s %s",
- entry->name, entry->choices[vn]);
- break;
- }
+ optval = set_option_print(entry, o);
+ ctx->print(ctx, "%s %s", entry->name, optval);
}
return (0);