mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Add unit (milliseconds) to escape-time, show unset colours as "none"
rather than "invalid" and don't show the same text twice for user options in customize mode.
This commit is contained in:
@ -680,9 +680,7 @@ window_customize_draw_option(struct window_customize_modedata *data,
|
||||
}
|
||||
ft = format_create_from_state(NULL, NULL, &fs);
|
||||
|
||||
if (oe == NULL)
|
||||
text = "This is a user option.";
|
||||
else if (oe->text == NULL)
|
||||
if (oe == NULL || oe->text == NULL)
|
||||
text = "This option doesn't have a description.";
|
||||
else
|
||||
text = oe->text;
|
||||
|
Reference in New Issue
Block a user