1
0
forked from aniani/vim

updated for version 7.3.239

Problem:    Python corrects the cursor column without taking 'virtualedit'
            into account. (lilydjwg)
Solution:   Call check_cursor_col_win().
This commit is contained in:
Bram Moolenaar 2011-07-07 15:08:58 +02:00
parent 5cfe2d760d
commit 03a807aaf4
7 changed files with 38 additions and 28 deletions

View File

@ -534,7 +534,6 @@ WindowSetattr(PyObject *self, char *name, PyObject *val)
{ {
long lnum; long lnum;
long col; long col;
long len;
if (!PyArg_Parse(val, "(ll)", &lnum, &col)) if (!PyArg_Parse(val, "(ll)", &lnum, &col))
return -1; return -1;
@ -549,18 +548,15 @@ WindowSetattr(PyObject *self, char *name, PyObject *val)
if (VimErrorCheck()) if (VimErrorCheck())
return -1; return -1;
/* When column is out of range silently correct it. */
len = (long)STRLEN(ml_get_buf(this->win->w_buffer, lnum, FALSE));
if (col > len)
col = len;
this->win->w_cursor.lnum = lnum; this->win->w_cursor.lnum = lnum;
this->win->w_cursor.col = col; this->win->w_cursor.col = col;
#ifdef FEAT_VIRTUALEDIT #ifdef FEAT_VIRTUALEDIT
this->win->w_cursor.coladd = 0; this->win->w_cursor.coladd = 0;
#endif #endif
update_screen(VALID); /* When column is out of range silently correct it. */
check_cursor_col_win(this->win);
update_screen(VALID);
return 0; return 0;
} }
else if (strcmp(name, "height") == 0) else if (strcmp(name, "height") == 0)

View File

@ -3563,7 +3563,7 @@ dbcs_screen_tail_off(base, p)
void void
mb_adjust_cursor() mb_adjust_cursor()
{ {
mb_adjustpos(&curwin->w_cursor); mb_adjustpos(curbuf, &curwin->w_cursor);
} }
/* /*
@ -3571,7 +3571,8 @@ mb_adjust_cursor()
* If it points to a tail byte it's moved backwards to the head byte. * If it points to a tail byte it's moved backwards to the head byte.
*/ */
void void
mb_adjustpos(lp) mb_adjustpos(buf, lp)
buf_T *buf;
pos_T *lp; pos_T *lp;
{ {
char_u *p; char_u *p;
@ -3582,7 +3583,7 @@ mb_adjustpos(lp)
#endif #endif
) )
{ {
p = ml_get(lp->lnum); p = ml_get_buf(buf, lp->lnum, FALSE);
lp->col -= (*mb_head_off)(p, p + lp->col); lp->col -= (*mb_head_off)(p, p + lp->col);
#ifdef FEAT_VIRTUALEDIT #ifdef FEAT_VIRTUALEDIT
/* Reset "coladd" when the cursor would be on the right half of a /* Reset "coladd" when the cursor would be on the right half of a

View File

@ -333,7 +333,7 @@ coladvance2(pos, addspaces, finetune, wcol)
#ifdef FEAT_MBYTE #ifdef FEAT_MBYTE
/* prevent from moving onto a trail byte */ /* prevent from moving onto a trail byte */
if (has_mbyte) if (has_mbyte)
mb_adjustpos(pos); mb_adjustpos(curbuf, pos);
#endif #endif
if (col < wcol) if (col < wcol)
@ -543,17 +543,27 @@ check_cursor_lnum()
*/ */
void void
check_cursor_col() check_cursor_col()
{
check_cursor_col_win(curwin);
}
/*
* Make sure win->w_cursor.col is valid.
*/
void
check_cursor_col_win(win)
win_T *win;
{ {
colnr_T len; colnr_T len;
#ifdef FEAT_VIRTUALEDIT #ifdef FEAT_VIRTUALEDIT
colnr_T oldcol = curwin->w_cursor.col; colnr_T oldcol = win->w_cursor.col;
colnr_T oldcoladd = curwin->w_cursor.col + curwin->w_cursor.coladd; colnr_T oldcoladd = win->w_cursor.col + win->w_cursor.coladd;
#endif #endif
len = (colnr_T)STRLEN(ml_get_curline()); len = (colnr_T)STRLEN(ml_get_buf(win->w_buffer, win->w_cursor.lnum, FALSE));
if (len == 0) if (len == 0)
curwin->w_cursor.col = 0; win->w_cursor.col = 0;
else if (curwin->w_cursor.col >= len) else if (win->w_cursor.col >= len)
{ {
/* Allow cursor past end-of-line when: /* Allow cursor past end-of-line when:
* - in Insert mode or restarting Insert mode * - in Insert mode or restarting Insert mode
@ -567,33 +577,33 @@ check_cursor_col()
|| (ve_flags & VE_ONEMORE) || (ve_flags & VE_ONEMORE)
#endif #endif
|| virtual_active()) || virtual_active())
curwin->w_cursor.col = len; win->w_cursor.col = len;
else else
{ {
curwin->w_cursor.col = len - 1; win->w_cursor.col = len - 1;
#ifdef FEAT_MBYTE #ifdef FEAT_MBYTE
/* prevent cursor from moving on the trail byte */ /* Move the cursor to the head byte. */
if (has_mbyte) if (has_mbyte)
mb_adjust_cursor(); mb_adjustpos(win->w_buffer, &win->w_cursor);
#endif #endif
} }
} }
else if (curwin->w_cursor.col < 0) else if (win->w_cursor.col < 0)
curwin->w_cursor.col = 0; win->w_cursor.col = 0;
#ifdef FEAT_VIRTUALEDIT #ifdef FEAT_VIRTUALEDIT
/* If virtual editing is on, we can leave the cursor on the old position, /* If virtual editing is on, we can leave the cursor on the old position,
* only we must set it to virtual. But don't do it when at the end of the * only we must set it to virtual. But don't do it when at the end of the
* line. */ * line. */
if (oldcol == MAXCOL) if (oldcol == MAXCOL)
curwin->w_cursor.coladd = 0; win->w_cursor.coladd = 0;
else if (ve_flags == VE_ALL) else if (ve_flags == VE_ALL)
{ {
if (oldcoladd > curwin->w_cursor.col) if (oldcoladd > win->w_cursor.col)
curwin->w_cursor.coladd = oldcoladd - curwin->w_cursor.col; win->w_cursor.coladd = oldcoladd - win->w_cursor.col;
else else
/* avoid weird number when there is a miscalculation or overflow */ /* avoid weird number when there is a miscalculation or overflow */
curwin->w_cursor.coladd = 0; win->w_cursor.coladd = 0;
} }
#endif #endif
} }

View File

@ -8774,7 +8774,7 @@ unadjust_for_sel()
{ {
--pp->col; --pp->col;
#ifdef FEAT_MBYTE #ifdef FEAT_MBYTE
mb_adjustpos(pp); mb_adjustpos(curbuf, pp);
#endif #endif
} }
else if (pp->lnum > 1) else if (pp->lnum > 1)

View File

@ -56,7 +56,7 @@ void utf_find_illegal __ARGS((void));
int utf_valid_string __ARGS((char_u *s, char_u *end)); int utf_valid_string __ARGS((char_u *s, char_u *end));
int dbcs_screen_tail_off __ARGS((char_u *base, char_u *p)); int dbcs_screen_tail_off __ARGS((char_u *base, char_u *p));
void mb_adjust_cursor __ARGS((void)); void mb_adjust_cursor __ARGS((void));
void mb_adjustpos __ARGS((pos_T *lp)); void mb_adjustpos __ARGS((buf_T *buf, pos_T *lp));
char_u *mb_prevptr __ARGS((char_u *line, char_u *p)); char_u *mb_prevptr __ARGS((char_u *line, char_u *p));
int mb_charlen __ARGS((char_u *str)); int mb_charlen __ARGS((char_u *str));
int mb_charlen_len __ARGS((char_u *str, int len)); int mb_charlen_len __ARGS((char_u *str, int len));

View File

@ -14,6 +14,7 @@ int decl __ARGS((pos_T *lp));
linenr_T get_cursor_rel_lnum __ARGS((win_T *wp, linenr_T lnum)); linenr_T get_cursor_rel_lnum __ARGS((win_T *wp, linenr_T lnum));
void check_cursor_lnum __ARGS((void)); void check_cursor_lnum __ARGS((void));
void check_cursor_col __ARGS((void)); void check_cursor_col __ARGS((void));
void check_cursor_col_win __ARGS((win_T *win));
void check_cursor __ARGS((void)); void check_cursor __ARGS((void));
void adjust_cursor_col __ARGS((void)); void adjust_cursor_col __ARGS((void));
int leftcol_changed __ARGS((void)); int leftcol_changed __ARGS((void));

View File

@ -709,6 +709,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
239,
/**/ /**/
238, 238,
/**/ /**/