mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
updated for version 7.0060
This commit is contained in:
13
src/ops.c
13
src/ops.c
@@ -2888,7 +2888,18 @@ op_yank(oap, deleting, mess)
|
||||
/* redisplay now, so message is not deleted */
|
||||
update_topline_redraw();
|
||||
if (yanklines == 1)
|
||||
MSG(_("1 line yanked"));
|
||||
{
|
||||
#ifdef FEAT_VISUAL
|
||||
if (oap->block_mode)
|
||||
MSG(_("block of 1 line yanked"));
|
||||
else
|
||||
#endif
|
||||
MSG(_("1 line yanked"));
|
||||
}
|
||||
#ifdef FEAT_VISUAL
|
||||
else if (oap->block_mode)
|
||||
smsg((char_u *)_("block of %ld lines yanked"), yanklines);
|
||||
#endif
|
||||
else
|
||||
smsg((char_u *)_("%ld lines yanked"), yanklines);
|
||||
}
|
||||
|
Reference in New Issue
Block a user