diff options
| author | Matthieu Coudron <mattator@gmail.com> | 2020-06-06 02:05:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-06 02:05:49 +0200 |
| commit | 33dafc4f0f21f763dac8f6bdbd27117666f908c5 (patch) | |
| tree | 179301040b52babddbe60001bc5c9b467edc310a /src/nvim/testdir/test_ga.vim | |
| parent | fca471d8e2573c2351151051a2d2c6eee0b2243b (diff) | |
| parent | 9538a7895cb6af2312a39c4c0710ace638309914 (diff) | |
| download | rneovim-33dafc4f0f21f763dac8f6bdbd27117666f908c5.tar.gz rneovim-33dafc4f0f21f763dac8f6bdbd27117666f908c5.tar.bz2 rneovim-33dafc4f0f21f763dac8f6bdbd27117666f908c5.zip | |
Merge pull request #12413 from janlazo/vim-8.2.0089
[RDY]vim-patch:8.0.1564,8.1.{917,1895,2018,2335},8.2.{89,491,873,892,905}
Diffstat (limited to 'src/nvim/testdir/test_ga.vim')
| -rw-r--r-- | src/nvim/testdir/test_ga.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_ga.vim b/src/nvim/testdir/test_ga.vim index ea3d211aeb..87f1382342 100644 --- a/src/nvim/testdir/test_ga.vim +++ b/src/nvim/testdir/test_ga.vim @@ -24,6 +24,7 @@ func Test_ga_command() " Test a few multi-bytes characters. call assert_equal("\n<é> 233, Hex 00e9, Oct 351, Digr e'", Do_ga('é')) call assert_equal("\n<ẻ> 7867, Hex 1ebb, Oct 17273, Digr e2", Do_ga('ẻ')) + call assert_equal("\n<\U00012345> 74565, Hex 00012345, Octal 221505", Do_ga("\U00012345")) " Test with combining characters. call assert_equal("\n<e> 101, Hex 65, Octal 145 < ́> 769, Hex 0301, Octal 1401", Do_ga("e\u0301")) |