- Fix subexpression replacement to work consistently.
Affects search.c:replace_regexp() and
utils.c:strstrwrapper() (David Benbennick).
+ - Fix cursor position being saved when escaping out
+ of nanogetstr with keys like ^Y and ^V. New arg
+ resetpos to nanogetstr(), added static int
+ resetpos in statusq() (bug found by DLR).
- cut.c:
do_cut_text()
- Fix incorrect cursor location when cutting long lines
#ifndef DISABLE_TABCOMP
, int *list
#endif
- );
+ , int resetpos);
void set_modified(void);
void titlebar(const char *path);
void bottombars(const shortcut *s);
#ifndef DISABLE_TABCOMP
, int *list
#endif
- )
+ , int resetpos)
{
int kbinput;
static int x = -1;
it would be past the end of the string as it is. Otherwise,
leave it alone. This is so the cursor position stays at the same
place if a prompt-changing toggle is pressed. */
- if (x == -1 || x > xend)
+ if (x == -1 || x > xend || resetpos)
x = xend;
answer = (char *)nrealloc(answer, xend + 1);
#ifndef DISABLE_TABCOMP
int list = 0;
#endif
+ static int resetpos = 0; /* Do we need to scrap the cursor position
+ on the statusbar? */
bottombars(s);
#ifndef DISABLE_TABCOMP
, &list
#endif
- );
+ , resetpos);
free(foo);
+ resetpos = 0;
switch (ret) {
case NANO_FIRSTLINE_KEY:
do_first_line();
+ resetpos = 1;
break;
case NANO_LASTLINE_KEY:
do_last_line();
+ resetpos = 1;
break;
case NANO_CANCEL_KEY:
ret = -1;
+ resetpos = 1;
break;
default:
blank_statusbar();