mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.1-190
This commit is contained in:
@@ -6564,6 +6564,12 @@ nv_brace(cap)
|
|||||||
clearopbeep(cap->oap);
|
clearopbeep(cap->oap);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
/* Don't leave the cursor on the NUL past a line */
|
||||||
|
if (curwin->w_cursor.col > 0 && gchar_cursor() == NUL)
|
||||||
|
{
|
||||||
|
--curwin->w_cursor.col;
|
||||||
|
cap->oap->inclusive = TRUE;
|
||||||
|
}
|
||||||
#ifdef FEAT_VIRTUALEDIT
|
#ifdef FEAT_VIRTUALEDIT
|
||||||
curwin->w_cursor.coladd = 0;
|
curwin->w_cursor.coladd = 0;
|
||||||
#endif
|
#endif
|
||||||
|
@@ -666,6 +666,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 */
|
||||||
|
/**/
|
||||||
|
190,
|
||||||
/**/
|
/**/
|
||||||
189,
|
189,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user