diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-02-08 15:21:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-08 15:21:18 +0800 |
commit | 51b432a7d1aa2a76ccfbf7a50f19c53e1151609f (patch) | |
tree | 9f3124a0e24ff5a88ba41a57bf65bedd78aa2539 /src | |
parent | 01e58fb14d4242148affc4b882c32f38ea96f5e6 (diff) | |
parent | 68603998b91a7fbf9a6cb415a51526fbd88b6581 (diff) | |
download | rneovim-51b432a7d1aa2a76ccfbf7a50f19c53e1151609f.tar.gz rneovim-51b432a7d1aa2a76ccfbf7a50f19c53e1151609f.tar.bz2 rneovim-51b432a7d1aa2a76ccfbf7a50f19c53e1151609f.zip |
Merge pull request #17327 from zeertzjq/test-ex-mode
test: add Lua functional tests for Ex mode
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_ex_mode.vim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_ex_mode.vim b/src/nvim/testdir/test_ex_mode.vim index 78663f7deb..dcec5f7cc6 100644 --- a/src/nvim/testdir/test_ex_mode.vim +++ b/src/nvim/testdir/test_ex_mode.vim @@ -29,12 +29,11 @@ endfunc " Test editing line in Ex mode (both Q and gQ) func Test_ex_mode() - throw 'skipped: TODO: ' + throw 'Skipped: Nvim only supports Vim Ex mode' let encoding_save = &encoding set sw=2 - " for e in ['utf8', 'latin1'] - for e in ['utf8'] + for e in ['utf8', 'latin1'] exe 'set encoding=' . e call assert_equal(['bar', 'bar'], Ex("foo bar\<C-u>bar"), e) |