added at the bottom of the history (but which was not in the
history) would not be preserved after scrolling down to the
blank bottom entry and then scrolling back up. (DLR)
+ - Add handler for Alt-[-H and F as home and end when -K is
+ used. Basically a workaround until a cleaner way can be found.
- configure.ac:
- Change the program used to detect a broken regexec() function
so that it works properly, using information found at
#endif
case NANO_HOME_KEY:
case KEY_HOME:
+ do_home:
x = 0;
break;
case NANO_END_KEY:
case KEY_END:
+ do_end:
x = xend;
break;
case KEY_RIGHT:
if (x > 0)
x--;
break;
+ case 'F':
+ goto do_end;
+ break;
+ case 'H':
+ goto do_home;
+ break;
case '1':
case '7':
x = 0;