diff options
author | nicm <nicm> | 2017-01-16 14:49:14 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-16 14:49:14 +0000 |
commit | 68db9584777fd40f6100e7944992a021f6e40c71 (patch) | |
tree | 33c49d924f6846a337348bc5067c8f9d845a018e /options-table.c | |
parent | 52847a951802fda7a3ce36cdac77c34914b0ccca (diff) | |
download | rtmux-68db9584777fd40f6100e7944992a021f6e40c71.tar.gz rtmux-68db9584777fd40f6100e7944992a021f6e40c71.tar.bz2 rtmux-68db9584777fd40f6100e7944992a021f6e40c71.zip |
getopt() has a struct option so just return to using options_entry.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/options-table.c b/options-table.c index b9559070..e61cd6ca 100644 --- a/options-table.c +++ b/options-table.c @@ -65,6 +65,13 @@ const struct options_table_entry options_table[] = { .default_num = 20 }, + { .name = "command-alias", + .type = OPTIONS_TABLE_ARRAY, + .scope = OPTIONS_TABLE_SERVER, + .default_str = "split-pane=split-window," + "splitp=split-window" + }, + { .name = "default-terminal", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_SERVER, |