delete all characters from char to EOL

- more like GNU readline or emacs - can delete entire line with
  ctrl-A ctrl-K
This commit is contained in:
Adam Feuer 2020-01-08 13:28:34 -08:00 committed by patacongo
parent 967e7e2912
commit 7fd1b9065b

View File

@ -1076,7 +1076,7 @@ static int cle_editloop(FAR struct cle_s *priv)
case KEY_DELEOL: /* Delete to the end of the line */
{
priv->nchars = (priv->nchars > 0 ? priv->curpos + 1 : 0);
priv->nchars = (priv->nchars > 0 ? priv->curpos : 0);
}
break;