diff options
author | nicm <nicm> | 2021-11-11 09:22:33 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-11-11 09:22:33 +0000 |
commit | 630c592ef8740a935ba6c12c957a359c94414219 (patch) | |
tree | e27f436e41881b039aaa9743d75f384a4ae03963 /menu.c | |
parent | 8f1cc0e9fa78a6200ba6bddf7c8958225d9fdd6d (diff) | |
download | rtmux-630c592ef8740a935ba6c12c957a359c94414219.tar.gz rtmux-630c592ef8740a935ba6c12c957a359c94414219.tar.bz2 rtmux-630c592ef8740a935ba6c12c957a359c94414219.zip |
If trimming menu item text, show key if it would take up less than a
quarter of the space; from Alexis Hildebrandt.
Also new sentence, new line in tmux.1, from jmc.
Diffstat (limited to 'menu.c')
-rw-r--r-- | menu.c | 24 |
1 files changed, 14 insertions, 10 deletions
@@ -89,22 +89,26 @@ menu_add_item(struct menu *menu, const struct menu_item *item, keylen = strlen(key) + 3; /* 3 = space and two brackets */ /* - * Only add the key if there is space for the entire item text - * and the key. + * Add the key if it is shorter than a quarter of the available + * space or there is space for the entire item text and the + * key. */ - if (keylen >= max_width || slen >= max_width - keylen) + if (keylen <= max_width / 4) + max_width -= keylen; + else if (keylen >= max_width || slen >= max_width - keylen) key = NULL; } + if (slen > max_width) { + max_width--; + suffix = ">"; + } if (key != NULL) - xasprintf(&name, "%s#[default] #[align=right](%s)", s, key); - else { - if (slen > max_width) { - max_width--; - suffix = ">"; - } + xasprintf(&name, "%.*s%s#[default] #[align=right](%s)", + (int)max_width, s, suffix, key); + else xasprintf(&name, "%.*s%s", (int)max_width, s, suffix); - } + new_item->name = name; free(s); |