improve backspace copy

This commit is contained in:
Kartik K. Agaram 2021-12-06 20:15:04 -08:00
parent 6b307fba2b
commit 8423192eee
1 changed files with 2 additions and 2 deletions

View File

@ -672,9 +672,9 @@ static void editorMenu(void) {
draw_menu_item("^g", "go");
draw_menu_item("^b", "big picture");
draw_menu_item("^f", "find");
draw_menu_item("^/|^-|^_", "(un)comment line");
draw_menu_item("^h", "back up cursor");
draw_menu_item("^h", "backspace");
draw_menu_item("^l", "end of line");
draw_menu_item("^/|^-|^_", "(un)comment line");
attrset(A_NORMAL);
}