changeset 32035:d21e867c517e v9.0.1349

patch 9.0.1349: "gr" with a count fails Commit: https://github.com/vim/vim/commit/3ddb1182b7b8d376e59b444f6b3e213f0dcd3417 Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Thu, 23 Feb 2023 23:15:03 +0100
parents d938317bfbc7
children d4f3ac9bfb83
files src/edit.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,