show ^h in a couple more menus

This commit is contained in:
Kartik K. Agaram 2021-12-03 18:23:40 -08:00
parent 31af4bd1fd
commit a796070c9b
1 changed files with 2 additions and 0 deletions

View File

@ -689,6 +689,7 @@ static void editorFindMenu(void) {
menu_column = 2;
draw_menu_item("Esc", "cancel");
draw_menu_item("Enter", "submit");
draw_menu_item("^h", "back up cursor");
draw_menu_item("^u", "clear");
/* draw_menu_item("←/↑", "previous"); */
attroff(A_REVERSE);
@ -714,6 +715,7 @@ static void editorGoMenu(void) {
menu_column = 2;
draw_menu_item("Esc", "cancel");
draw_menu_item("Enter", "submit");
draw_menu_item("^h", "back up cursor");
draw_menu_item("^u", "clear");
attrset(A_NORMAL);
}