mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.0-125
This commit is contained in:
parent
69a7e43028
commit
6179c61827
15
src/normal.c
15
src/normal.c
@ -1477,14 +1477,17 @@ do_pending_operator(cap, old_col, gui_yank)
|
|||||||
}
|
}
|
||||||
else if (VIsual_active)
|
else if (VIsual_active)
|
||||||
{
|
{
|
||||||
/* Save the current VIsual area for '< and '> marks, and "gv" */
|
if (!gui_yank)
|
||||||
curbuf->b_visual.vi_start = VIsual;
|
{
|
||||||
curbuf->b_visual.vi_end = curwin->w_cursor;
|
/* Save the current VIsual area for '< and '> marks, and "gv" */
|
||||||
curbuf->b_visual.vi_mode = VIsual_mode;
|
curbuf->b_visual.vi_start = VIsual;
|
||||||
curbuf->b_visual.vi_curswant = curwin->w_curswant;
|
curbuf->b_visual.vi_end = curwin->w_cursor;
|
||||||
|
curbuf->b_visual.vi_mode = VIsual_mode;
|
||||||
|
curbuf->b_visual.vi_curswant = curwin->w_curswant;
|
||||||
# ifdef FEAT_EVAL
|
# ifdef FEAT_EVAL
|
||||||
curbuf->b_visual_mode_eval = VIsual_mode;
|
curbuf->b_visual_mode_eval = VIsual_mode;
|
||||||
# endif
|
# endif
|
||||||
|
}
|
||||||
|
|
||||||
/* In Select mode, a linewise selection is operated upon like a
|
/* In Select mode, a linewise selection is operated upon like a
|
||||||
* characterwise selection. */
|
* characterwise selection. */
|
||||||
|
@ -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 */
|
||||||
|
/**/
|
||||||
|
125,
|
||||||
/**/
|
/**/
|
||||||
124,
|
124,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user