mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.1-242
This commit is contained in:
@@ -3637,7 +3637,7 @@ current_block(oap, count, include, what, other)
|
|||||||
oap->inclusive = FALSE;
|
oap->inclusive = FALSE;
|
||||||
if (sol)
|
if (sol)
|
||||||
incl(&curwin->w_cursor);
|
incl(&curwin->w_cursor);
|
||||||
else if (lt(start_pos, curwin->w_cursor))
|
else if (ltoreq(start_pos, curwin->w_cursor))
|
||||||
/* Include the character under the cursor. */
|
/* Include the character under the cursor. */
|
||||||
oap->inclusive = TRUE;
|
oap->inclusive = TRUE;
|
||||||
else
|
else
|
||||||
@@ -3754,6 +3754,10 @@ current_tagblock(oap, count_arg, include)
|
|||||||
old_pos = curwin->w_cursor;
|
old_pos = curwin->w_cursor;
|
||||||
old_end = curwin->w_cursor; /* remember where we started */
|
old_end = curwin->w_cursor; /* remember where we started */
|
||||||
old_start = old_end;
|
old_start = old_end;
|
||||||
|
#ifdef FEAT_VISUAL
|
||||||
|
if (!VIsual_active || *p_sel == 'e')
|
||||||
|
#endif
|
||||||
|
decl(&old_end); /* old_end is inclusive */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If we start on "<aaa>" select that block.
|
* If we start on "<aaa>" select that block.
|
||||||
|
@@ -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 */
|
||||||
|
/**/
|
||||||
|
242,
|
||||||
/**/
|
/**/
|
||||||
241,
|
241,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user