diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-12-03 21:31:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-03 21:31:29 -0500 |
| commit | 44be2dfca192db9f47d59c6bb29975c9730c5827 (patch) | |
| tree | a4c65c0b3e257b75e0a0bfeee1f65b3296b580a4 /src/nvim/testdir/test_utf8.vim | |
| parent | f5e0f17968eae6770cc0da136d8c9a4b23bc6da2 (diff) | |
| parent | 2bcae2024230eb4dd1013779ec1b69dc104c4021 (diff) | |
| download | rneovim-44be2dfca192db9f47d59c6bb29975c9730c5827.tar.gz rneovim-44be2dfca192db9f47d59c6bb29975c9730c5827.tar.bz2 rneovim-44be2dfca192db9f47d59c6bb29975c9730c5827.zip | |
Merge pull request #13434 from janlazo/vim-8.2.2076
vim-patch:8.1.{1013,1774},8.2.{1164,1673,1907,2076,2077,2078,2085,2086}
Diffstat (limited to 'src/nvim/testdir/test_utf8.vim')
| -rw-r--r-- | src/nvim/testdir/test_utf8.vim | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_utf8.vim b/src/nvim/testdir/test_utf8.vim index 8302ccb67f..e8161f8fcb 100644 --- a/src/nvim/testdir/test_utf8.vim +++ b/src/nvim/testdir/test_utf8.vim @@ -103,3 +103,14 @@ func Test_list2str_str2list_latin1() call assert_equal(l, lres) call assert_equal(s, sres) endfunc + +func Test_print_overlong() + " Text with more composing characters than MB_MAXBYTES. + new + call setline(1, 'axxxxxxxxxxxxxxxxxxxxxxxxxxxxxx') + s/x/\=nr2char(1629)/g + print + bwipe! +endfunc + +" vim: shiftwidth=2 sts=2 expandtab |