diff src/testdir/test_gn.vim @ 22549:5055805908f5 v8.2.1823

patch 8.2.1823: "gN" does not select the matched string Commit: https://github.com/vim/vim/commit/28f224b2c1bd2fcdee7b4fe2c64826e1cff08f39 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 10 16:45:25 2020 +0200 patch 8.2.1823: "gN" does not select the matched string Problem: "gN" does not select the matched string. Solution: Move the cursor to the start of the match.
author Bram Moolenaar <Bram@vim.org>
date Sat, 10 Oct 2020 17:00:03 +0200
parents cbc570e66d11
children 381bd66762ea
line wrap: on
line diff
--- a/src/testdir/test_gn.vim
+++ b/src/testdir/test_gn.vim
@@ -172,7 +172,16 @@ func Test_gn_command()
   normal 0wgNy
   call assert_equal('one', @")
   set selection&
-endfu
+endfunc
+
+func Test_gN_repeat()
+  new
+  call setline(1, 'this list is a list with a list of a list.')
+  /list
+  normal $gNgNgNx
+  call assert_equal('list with a list of a list', @")
+  bwipe!
+endfunc
 
 func Test_gn_multi_line()
   new