Skip to content

Commit

Permalink
Ctrl+a and Ctrl+e support
Browse files Browse the repository at this point in the history
  • Loading branch information
antirez committed Mar 21, 2010
1 parent 4b9fe35 commit 7f4de38
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions linenoise.c
Expand Up @@ -259,16 +259,24 @@ static int linenoisePrompt(int fd, char *buf, size_t buflen, char *prompt) {
}
}
break;
case 21: /* Ctrl+U, delete the whole line. */
case 21: /* Ctrl+u, delete the whole line. */
buf[0] = '\0';
pos = len = 0;
refreshLine(fd,prompt,buf,len,pos,cols);
break;
case 11: /* Ctrl+K, delete from current to end of line. */
case 11: /* Ctrl+k, delete from current to end of line. */
buf[pos] = '\0';
len = pos;
refreshLine(fd,prompt,buf,len,pos,cols);
break;
case 1: /* Ctrl+a, go to the start of the line */
pos = 0;
refreshLine(fd,prompt,buf,len,pos,cols);
break;
case 5: /* ctrl+e, go to the end of the line */
pos = len;
refreshLine(fd,prompt,buf,len,pos,cols);
break;
}
}
return len;
Expand Down

0 comments on commit 7f4de38

Please sign in to comment.