mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 01:48:47 +00:00
Merge branch 'obsd-master'
This commit is contained in:
commit
e3698e6e1f
@ -487,7 +487,7 @@ mode_tree_draw(struct mode_tree_data *mtd)
|
||||
screen_write_cursormove(&ctx, 0, i - mtd->offset);
|
||||
|
||||
if (i < 10)
|
||||
snprintf(key, sizeof key, "(%c)", '0' + i);
|
||||
snprintf(key, sizeof key, "(%c) ", '0' + i);
|
||||
else if (i < 36)
|
||||
snprintf(key, sizeof key, "(M-%c)", 'a' + (i - 10));
|
||||
else
|
||||
|
@ -258,8 +258,12 @@ window_tree_build_window(struct session *s, struct winlink *wl, void* modedata,
|
||||
free(text);
|
||||
free(name);
|
||||
|
||||
if (window_count_panes(wl->window) == 1)
|
||||
return (1);
|
||||
|
||||
l = NULL;
|
||||
n = 0;
|
||||
|
||||
TAILQ_FOREACH(wp, &wl->window->panes, entry) {
|
||||
if (filter != NULL) {
|
||||
cp = format_single(NULL, filter, NULL, s, wl, wp);
|
||||
|
Loading…
Reference in New Issue
Block a user