# HG changeset patch # User Bram Moolenaar # Date 1677190503 -3600 # Node ID d21e867c517e9c47d8aee6915282d345a3a5bec5 # Parent d938317bfbc7265e4b2b6cd5c2a85b990cf2e533 patch 9.0.1349: "gr" with a count fails Commit: https://github.com/vim/vim/commit/3ddb1182b7b8d376e59b444f6b3e213f0dcd3417 Author: Bram Moolenaar Date: Thu Feb 23 22:14:37 2023 +0000 patch 9.0.1349: "gr" with a count fails Problem: "gr" with a count fails. Solution: Break out of the loop only after using the count. diff --git a/src/edit.c b/src/edit.c --- a/src/edit.c +++ b/src/edit.c @@ -589,7 +589,7 @@ edit( if (cmdchar == K_PS) // Got here from normal mode when bracketed paste started. c = K_PS; - else if (cmdchar == 'v' && did_loop) + else if (cmdchar == 'v' && did_loop && count <= 0) c = ESC; // in case the stuffed Esc was consumed already else do diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1349, +/**/ 1348, /**/ 1347,