aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2022-01-27 08:41:29 +0100
committerGitHub <noreply@github.com>2022-01-27 08:41:29 +0100
commit95b8a8f6aed2057dbbb745c703612d1ace5eb2b2 (patch)
tree44536cd5ed3a26d747d43e69f9214fd2c4a858cd /src/nvim/testdir
parent480fbbe296d4cad860855fc62a9d8296e915c8df (diff)
parent176df92bd7f8a3c8755b2a16e021489ca03db747 (diff)
downloadrneovim-95b8a8f6aed2057dbbb745c703612d1ace5eb2b2.tar.gz
rneovim-95b8a8f6aed2057dbbb745c703612d1ace5eb2b2.tar.bz2
rneovim-95b8a8f6aed2057dbbb745c703612d1ace5eb2b2.zip
Merge pull request #17131 from zeertzjq/vim-8.2.3580
vim-patch:8.2.3580: gj does not move properly with a wide character
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test_normal.vim12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_normal.vim b/src/nvim/testdir/test_normal.vim
index aff22f5d01..cb1d66cb98 100644
--- a/src/nvim/testdir/test_normal.vim
+++ b/src/nvim/testdir/test_normal.vim
@@ -2759,4 +2759,16 @@ func Test_normal_count_after_operator()
bw!
endfunc
+func Test_normal_gj_on_extra_wide_char()
+ new | 25vsp
+ let text='1 foooooooo ar e ins‍zwe1 foooooooo ins‍zwei' .
+ \ ' i drei vier fünf sechs sieben acht un zehn elf zwöfl' .
+ \ ' dreizehn v ierzehn fünfzehn'
+ put =text
+ call cursor(2,1)
+ norm! gj
+ call assert_equal([0,2,25,0], getpos('.'))
+ bw!
+endfunc
+
" vim: shiftwidth=2 sts=2 expandtab