diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-06-13 18:09:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-13 18:09:11 -0400 |
| commit | 2f0e5e7e67faa469f5d12a66ec084ab9c35d8c6b (patch) | |
| tree | 75b8de1718e5004f2fc2426d3205eb797f2b9733 /src/nvim/testdir/test_startup_utf8.vim | |
| parent | e2bc0bf6656124afc47980210e96c31bd3357bea (diff) | |
| parent | 8f4ba0a46becf631f00179264938f2be131945cd (diff) | |
| download | rneovim-2f0e5e7e67faa469f5d12a66ec084ab9c35d8c6b.tar.gz rneovim-2f0e5e7e67faa469f5d12a66ec084ab9c35d8c6b.tar.bz2 rneovim-2f0e5e7e67faa469f5d12a66ec084ab9c35d8c6b.zip | |
Merge pull request #14802 from janlazo/vim-8.2.1354
vim-patch:8.2.{936,1354,2990}
Diffstat (limited to 'src/nvim/testdir/test_startup_utf8.vim')
| -rw-r--r-- | src/nvim/testdir/test_startup_utf8.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_startup_utf8.vim b/src/nvim/testdir/test_startup_utf8.vim index 1b3d2184a0..bb4304396e 100644 --- a/src/nvim/testdir/test_startup_utf8.vim +++ b/src/nvim/testdir/test_startup_utf8.vim @@ -1,5 +1,6 @@ " Tests for startup using utf-8. +source check.vim source shared.vim source screendump.vim @@ -73,7 +74,7 @@ func Test_detect_ambiwidth() \ 'call test_option_not_set("ambiwidth")', \ 'redraw', \ ], 'Xscript') - let buf = RunVimInTerminal('-S Xscript', {}) + let buf = RunVimInTerminal('-S Xscript', #{keep_t_u7: 1}) call term_wait(buf) call term_sendkeys(buf, "S\<C-R>=&ambiwidth\<CR>\<Esc>") call WaitForAssert({-> assert_match('single', term_getline(buf, 1))}) |