diff options
-rw-r--r-- | src/kilo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kilo.c b/src/kilo.c index a1a36e8..daa5e86 100644 --- a/src/kilo.c +++ b/src/kilo.c @@ -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); } |