diff --git a/runtime/doc/index.txt b/runtime/doc/index.txt index b814b3be78..9d9207d84c 100644 --- a/runtime/doc/index.txt +++ b/runtime/doc/index.txt @@ -790,7 +790,8 @@ tag char note action in Normal mode ~ |g@| g@{motion} call 'operatorfunc' |g~| g~{motion} 2 swap case for Nmove text |g| g 1 same as "gj" -|g| g 1 same as "g$" +|g| g 1 same as "g$" but go to the rightmost + non-blank character instead |g| g 1 same as "g0" |g| g same as g same as diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 7159575620..309f88428a 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -5360,7 +5360,7 @@ static void nv_g_dollar_cmd(cmdarg_T *cap) if (flag) { do { i = gchar_cursor(); - } while (ascii_iswhite(i) && oneleft() == OK); + } while (ascii_iswhite_or_nul(i) && oneleft() == OK); curwin->w_valid &= ~VALID_WCOL; } } diff --git a/test/old/testdir/test_normal.vim b/test/old/testdir/test_normal.vim index 858d235233..5a0a8a0c33 100644 --- a/test/old/testdir/test_normal.vim +++ b/test/old/testdir/test_normal.vim @@ -4186,6 +4186,17 @@ func Test_normal33_g_cmd_nonblank() call assert_equal(20, col('.')) exe "normal 0g\" call assert_equal(11, col('.')) + + " Test visual mode at end of line + normal 0$bvg$y + call assert_equal(80, col("'>")) + exe "normal 0$bvg\y" + call assert_equal(71, col("'>")) + setlocal nowrap virtualedit=all + exe "normal 0$\llg\y" + call assert_equal(71, col("'<")) + exe "normal 0$llvg\y" + call assert_equal(71, col("'<")) bw! endfunc