diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-12-06 20:15:04 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-12-06 20:15:04 -0800 |
commit | 8423192eeed93bea6528d3e9bf3e73e798a3d546 (patch) | |
tree | 79a8cf6ad1f4861b01034724012e368e055dada0 | |
parent | 6b307fba2bce5136a272ce30ecf2805b64857437 (diff) | |
download | teliva-8423192eeed93bea6528d3e9bf3e73e798a3d546.tar.gz |
improve backspace copy
-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); } |