git-svn-id: svn://svn.savannah.gnu.org/nano/branches/nano_1_0_branch/nano@1053
35c25a1d-7b9e-4130-9fde-
d3aeb78583b8
Corsi) (67) [FIXED].
- ^C does not work after a suspend in tcsh (discovered by
Trevor Cordes) (68) [FIXED].
-
+- Home and End control keys (^A, ^E) do not always work in filename
+ prompt (bug found by Ian Turner) (69) [FIXED].
** Open BUGS **
CVS code -
+- winio.c:
+ nanogetstr()
+ - Add NANO_HOME_KEY and NANO_END_KEY to the home and
+ end key code (fixes BUG #69).
- THANKS:
- Added missing entry for Eivind Kjørstad.
- po/no.po:
#endif
break;
case KEY_HOME:
+ case NANO_HOME_KEY:
x = x_left;
nanoget_repaint(buf, inputbuf, x);
break;
case KEY_END:
+ case NANO_END_KEY:
x = x_left + strlen(inputbuf);
nanoget_repaint(buf, inputbuf, x);
break;
case KEY_RIGHT:
case NANO_FORWARD_KEY:
-
if (x < xend)
x++;
wmove(bottomwin, 0, x);