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

@ -774,11 +774,13 @@ mode_tree_key(struct mode_tree_data *mtd, struct client *c, key_code *key,
case KEYC_UP:
case 'k':
case KEYC_WHEELUP_PANE:
case '\020': /* C-p */
mode_tree_up(mtd, 1);
break;
case KEYC_DOWN:
case 'j':
case KEYC_WHEELDOWN_PANE:
case '\016': /* C-n */
mode_tree_down(mtd, 1);
break;
case KEYC_PPAGE: