mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -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:
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user