diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-03-20 11:23:12 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-03-20 11:23:12 +0000 |
commit | 01f2b5d64b18a5da6d04e4ccc66c71b4debc044a (patch) | |
tree | 4e8bcfe82dff0c55f02e655a383acf51658d40ca | |
parent | f59971276ac02d8b42ef222509673ff356800f56 (diff) | |
download | rtmux-01f2b5d64b18a5da6d04e4ccc66c71b4debc044a.tar.gz rtmux-01f2b5d64b18a5da6d04e4ccc66c71b4debc044a.tar.bz2 rtmux-01f2b5d64b18a5da6d04e4ccc66c71b4debc044a.zip |
50 is a too low trigger default on larger terminals, bump to 250.
-rw-r--r-- | options-table.c | 2 | ||||
-rw-r--r-- | tmux.1 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/options-table.c b/options-table.c index 9bbcc5d7..965e4ebd 100644 --- a/options-table.c +++ b/options-table.c @@ -468,7 +468,7 @@ const struct options_table_entry window_options_table[] = { { .name = "c0-change-trigger", .type = OPTIONS_TABLE_NUMBER, - .default_num = 50, + .default_num = 250, .minimum = 0, .maximum = USHRT_MAX }, @@ -2478,7 +2478,7 @@ milliseconds. This helps to prevent fast output (such as .Xr yes 1 overwhelming the terminal). -The default is a trigger of 50 and an interval of 100. +The default is a trigger of 250 and an interval of 100. A trigger of zero disables the rate limiting. .Pp .It Ic clock-mode-colour Ar colour |