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,9 +8393,11 @@ nv_g_cmd(cap)
|
||||
|
||||
#ifdef FEAT_WINDOWS
|
||||
case 't':
|
||||
if (!checkclearop(oap))
|
||||
goto_tabpage((int)cap->count0);
|
||||
break;
|
||||
case 'T':
|
||||
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…
x
Reference in New Issue
Block a user