Browse Source

Also treat ^H as backspace

master
lostd 10 years ago
parent
commit
68be0868c6
2 changed files with 3 additions and 2 deletions
  1. +1
    -0
      config.def.h
  2. +2
    -2
      noice.c

+ 1
- 0
config.def.h View File

@@ -18,6 +18,7 @@ struct key bindings[] = {
{ KEY_BACKSPACE, SEL_BACK },
{ KEY_LEFT, SEL_BACK },
{ 'h', SEL_BACK },
{ CONTROL('H'), SEL_BACK },
/* Inside */
{ KEY_ENTER, SEL_GOIN },
{ '\r', SEL_GOIN },


+ 2
- 2
noice.c View File

@@ -327,7 +327,7 @@ readln(void)
while ((c = getch()) != ERR) {
if (c == KEY_ENTER || c == '\r')
break;
if (c == KEY_BACKSPACE) {
if (c == KEY_BACKSPACE || c == CONTROL('H')) {
getyx(stdscr, y, x);
if (x >= x0) {
i--;
@@ -386,7 +386,7 @@ readmore(char **str)
ret = 1;
goto out;
}
if (c == KEY_BACKSPACE) {
if (c == KEY_BACKSPACE || c == CONTROL('H')) {
i--;
if (i > 0) {
ln = xrealloc(ln, (i + 1) * sizeof(*ln));


Loading…
Cancel
Save