diff options
author | nicm <nicm> | 2017-01-24 19:59:19 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-01-24 19:59:19 +0000 |
commit | 126d364abe2e8c063efa5a888de6997ca05641fc (patch) | |
tree | 4c24c19077f49f3f097b81e6813b8aa3ee66f46a /options-table.c | |
parent | 85338bb75fa4fbabfdbefeb995bdea04efaf2db4 (diff) | |
download | rtmux-126d364abe2e8c063efa5a888de6997ca05641fc.tar.gz rtmux-126d364abe2e8c063efa5a888de6997ca05641fc.tar.bz2 rtmux-126d364abe2e8c063efa5a888de6997ca05641fc.zip |
server-info can become an alias rather than a command.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/options-table.c b/options-table.c index b9559070..48e2f2c8 100644 --- a/options-table.c +++ b/options-table.c @@ -65,6 +65,16 @@ 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," + "server-info=show-messages -JT," + "info=show-messages -JT", + .separator = "," + }, + { .name = "default-terminal", .type = OPTIONS_TABLE_STRING, .scope = OPTIONS_TABLE_SERVER, |