From 164d6efcb7a17de6f1a90ea907fc8924bb3493e3 Mon Sep 17 00:00:00 2001 From: nobody Date: Mon, 25 Sep 2017 22:48:15 +0200 Subject: Make delete key act as delete instead of backspace Signed-off-by: Lukas Fleischer --- src/getstring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/getstring.c b/src/getstring.c index 54f78c1..8352f40 100644 --- a/src/getstring.c +++ b/src/getstring.c @@ -195,7 +195,6 @@ enum getstr getstring(WINDOW * win, char *str, int l, int x, int y) break; switch (ch) { case KEY_BACKSPACE: /* delete one character */ - case 330: case 127: case CTRL('H'): if (st.pos > 0) { @@ -205,6 +204,7 @@ enum getstr getstring(WINDOW * win, char *str, int l, int x, int y) bell(); } break; + case KEY_DC: case CTRL('D'): /* delete next character */ if (st.pos < st.len) getstr_del_char(&st); -- cgit v1.2.3-54-g00ecf