less ambiguous menus

Doesn't make sense to use '/' as a delimiter when we have hotkeys
involving '/'.
This commit is contained in:
Kartik K. Agaram 2021-12-03 20:13:52 -08:00
parent bbab1a7c10
commit 950957619c
2 changed files with 9 additions and 9 deletions

View File

@ -691,15 +691,15 @@ static void editorFindMenu(void) {
draw_menu_item("Enter", "submit");
draw_menu_item("^h", "back up cursor");
draw_menu_item("^u", "clear");
/* draw_menu_item("←/↑", "previous"); */
/* draw_menu_item("←|↑", "previous"); */
attroff(A_REVERSE);
mvaddstr(LINES-1, menu_column, "/");
mvaddstr(LINES-1, menu_column, "|");
menu_column += 5; /* strlen isn't sufficient */
attron(A_REVERSE);
draw_string_on_menu("previous");
/* draw_menu_item("↓/→", "next"); */
/* draw_menu_item("↓|→", "next"); */
attroff(A_REVERSE);
mvaddstr(LINES-1, menu_column, "/");
mvaddstr(LINES-1, menu_column, "|");
menu_column += 5; /* strlen isn't sufficient */
attron(A_REVERSE);
draw_string_on_menu("next");

View File

@ -443,19 +443,19 @@ static void recent_changes_menu (int cursor, int history_array_size) {
extern int menu_column;
menu_column = 2;
draw_menu_item("^x", "go back");
/* draw_menu_item("↓/space", "older"); */
/* draw_menu_item("↓|space", "older"); */
attroff(A_REVERSE);
mvaddstr(LINES-1, menu_column, "/space ");
mvaddstr(LINES-1, menu_column, "|space ");
menu_column += 9; /* strlen isn't sufficient */
attron(A_REVERSE);
draw_string_on_menu("older");
/* draw_menu_item("↑/backspace", "newer"); */
/* draw_menu_item("↑|backspace", "newer"); */
attroff(A_REVERSE);
mvaddstr(LINES-1, menu_column, "/backspace/delete/^h ");
mvaddstr(LINES-1, menu_column, "|backspace|delete|^h ");
menu_column += 23;
attron(A_REVERSE);
draw_string_on_menu("newer");
draw_menu_item("^e", "edit/add note");
draw_menu_item("^e", "edit|add note");
if (cursor < history_array_size)
draw_menu_item("^u", "undo everything after this");
attrset(A_NORMAL);