diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-06-16 11:57:05 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2021-06-16 11:57:05 +0000 |
commit | 142ca1ce3861f77a7536b6af1673fe84addac94b (patch) | |
tree | 3f52633e176bd303fea967eb60d11fc2eeac66c7 /usr.bin/tmux/options-table.c | |
parent | cebbe14112cd8835ae378eb86899a7abb8235dfc (diff) |
Minor fixes to option descriptions.
Diffstat (limited to 'usr.bin/tmux/options-table.c')
-rw-r--r-- | usr.bin/tmux/options-table.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index 1588b637e2d..d3d1fc40e76 100644 --- a/usr.bin/tmux/options-table.c +++ b/usr.bin/tmux/options-table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.143 2021/06/10 07:56:47 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.144 2021/06/16 11:57:04 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -368,7 +368,7 @@ const struct options_table_entry options_table[] = { .maximum = INT_MAX, .default_num = 1, .unit = "milliseconds", - .text = "Maximum time between input to assume it pasting rather " + .text = "Maximum time between input to assume it is pasting rather " "than typing." }, @@ -615,7 +615,7 @@ const struct options_table_entry options_table[] = { .text = "Formats for the status lines. " "Each array member is the format for one status line. " "The default status line is made up of several components " - "which may be configured individually with other option such " + "which may be configured individually with other options such " "as 'status-left'." }, @@ -952,7 +952,8 @@ const struct options_table_entry options_table[] = { .scope = OPTIONS_TABLE_WINDOW, .choices = options_table_pane_lines_list, .default_num = PANE_LINES_SINGLE, - .text = "Type of the pane type lines." + .text = "Type of characters used to draw pane border lines. Some of " + "these are only supported on terminals with UTF-8 support." }, { .name = "pane-border-status", |