Add C-n and C-p keys for tree mode, and choose the right initial line

when no panes.
This commit is contained in:
nicm
2017-10-11 08:08:16 +00:00
parent db44151a37
commit 99351c9cae
2 changed files with 6 additions and 1 deletions

View File

@ -434,7 +434,10 @@ window_tree_build(void *modedata, u_int sort_type, uint64_t *tag,
*tag = (uint64_t)data->fs.wl;
break;
case WINDOW_TREE_PANE:
*tag = (uint64_t)data->fs.wp;
if (window_count_panes(data->fs.wl->window) == 1)
*tag = (uint64_t)data->fs.wl;
else
*tag = (uint64_t)data->fs.wp;
break;
}
}