diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-02-04 09:48:48 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-04 09:48:48 +0800 |
| commit | 6bee2bf7903b84feffb14a42668626b3014f2132 (patch) | |
| tree | 8a8041548bda612d384cbdf95cfb5f1feaa11166 /src/nvim/testdir/test_utf8_comparisons.vim | |
| parent | b667bb355d882fa3a801972c11038112d146a39f (diff) | |
| parent | 6775a7d98f580b2024fde962dbda984eb5d583fe (diff) | |
| download | rneovim-6bee2bf7903b84feffb14a42668626b3014f2132.tar.gz rneovim-6bee2bf7903b84feffb14a42668626b3014f2132.tar.bz2 rneovim-6bee2bf7903b84feffb14a42668626b3014f2132.zip | |
Merge pull request #17272 from zeertzjq/vim-8.1.0846
vim-patch:8.1.{0846,0878,0884,2358},8.2.{0305,0352,0687,3797}
Diffstat (limited to 'src/nvim/testdir/test_utf8_comparisons.vim')
| -rw-r--r-- | src/nvim/testdir/test_utf8_comparisons.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_utf8_comparisons.vim b/src/nvim/testdir/test_utf8_comparisons.vim index fdf9d80802..62947c6e6e 100644 --- a/src/nvim/testdir/test_utf8_comparisons.vim +++ b/src/nvim/testdir/test_utf8_comparisons.vim @@ -86,6 +86,9 @@ endfunc " test that g~ap changes one paragraph only. func Test_gap() new - call feedkeys("iabcd\n\ndefggg0g~ap", "tx") + " setup text + call feedkeys("iabcd\<cr>\<cr>defg", "tx") + " modify only first line + call feedkeys("gg0g~ap", "tx") call assert_equal(["ABCD", "", "defg"], getline(1,3)) endfunc |