diff options
author | nicm <nicm> | 2019-09-19 09:02:30 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-09-19 09:02:30 +0000 |
commit | 647887b794c00285047aa54ac0d44ae50c7847d7 (patch) | |
tree | c173a9c9f68dd40248df0b0685189241c074ec4d /options-table.c | |
parent | d01847735903496c25e1d24375b911edffa56ef8 (diff) | |
download | rtmux-647887b794c00285047aa54ac0d44ae50c7847d7.tar.gz rtmux-647887b794c00285047aa54ac0d44ae50c7847d7.tar.bz2 rtmux-647887b794c00285047aa54ac0d44ae50c7847d7.zip |
Add a "latest" window-size option which tries to size windows based on
the most recently used client. From Tommie Gannert in GitHub issue 1869
based on earlier changes from me.
Diffstat (limited to 'options-table.c')
-rw-r--r-- | options-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c index d012f448..77dbfb13 100644 --- a/options-table.c +++ b/options-table.c @@ -64,7 +64,7 @@ static const char *options_table_set_clipboard_list[] = { "off", "external", "on", NULL }; static const char *options_table_window_size_list[] = { - "largest", "smallest", "manual", NULL + "largest", "smallest", "manual", "latest", NULL }; /* Status line format. */ |