mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04: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
@ -8393,10 +8393,12 @@ nv_g_cmd(cap)
|
|||||||
|
|
||||||
#ifdef FEAT_WINDOWS
|
#ifdef FEAT_WINDOWS
|
||||||
case 't':
|
case 't':
|
||||||
goto_tabpage((int)cap->count0);
|
if (!checkclearop(oap))
|
||||||
|
goto_tabpage((int)cap->count0);
|
||||||
break;
|
break;
|
||||||
case 'T':
|
case 'T':
|
||||||
goto_tabpage(-(int)cap->count1);
|
if (!checkclearop(oap))
|
||||||
|
goto_tabpage(-(int)cap->count1);
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -714,6 +714,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 */
|
||||||
|
/**/
|
||||||
|
575,
|
||||||
/**/
|
/**/
|
||||||
574,
|
574,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user