From 85f5485cb5e46d6d574b7a1b8c1357c85b528e2b Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 1 Apr 2012 13:18:38 +0000 Subject: Add a layout history which can be stepped through with select-layout -u and -U commands (bound to 'u' and 'U' by default). --- options-table.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'options-table.c') diff --git a/options-table.c b/options-table.c index 965e4ebd..90833114 100644 --- a/options-table.c +++ b/options-table.c @@ -505,6 +505,13 @@ const struct options_table_entry window_options_table[] = { .default_num = 0 }, + { .name = "layout-history-limit", + .type = OPTIONS_TABLE_NUMBER, + .minimum = 1, + .maximum = USHRT_MAX, + .default_num = 20 + }, + { .name = "main-pane-height", .type = OPTIONS_TABLE_NUMBER, .minimum = 1, -- cgit