mirror of
https://github.com/vim/vim
synced 2025-03-30 22:46:45 +02:00
updated for version 7.3.575
Problem: "ygt" tries to yank instead of giving an error. (Daniel Mueller) Solution: Check for a pending operator.
This commit is contained in:
parent
e79abddb2f
commit
89f940fcac
2 changed files with 6 additions and 2 deletions
|
@ -8393,10 +8393,12 @@ nv_g_cmd(cap)
|
|||
|
||||
#ifdef FEAT_WINDOWS
|
||||
case 't':
|
||||
goto_tabpage((int)cap->count0);
|
||||
if (!checkclearop(oap))
|
||||
goto_tabpage((int)cap->count0);
|
||||
break;
|
||||
case 'T':
|
||||
goto_tabpage(-(int)cap->count1);
|
||||
if (!checkclearop(oap))
|
||||
goto_tabpage(-(int)cap->count1);
|
||||
break;
|
||||
#endif
|
||||
|
||||
|
|
|
@ -714,6 +714,8 @@ static char *(features[]) =
|
|||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
575,
|
||||
/**/
|
||||
574,
|
||||
/**/
|
||||
|
|
Loading…
Add table
Reference in a new issue