aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-02-08 14:47:23 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-02-08 14:47:23 +0800
commit68603998b91a7fbf9a6cb415a51526fbd88b6581 (patch)
tree9f3124a0e24ff5a88ba41a57bf65bedd78aa2539 /src
parent01e58fb14d4242148affc4b882c32f38ea96f5e6 (diff)
downloadrneovim-68603998b91a7fbf9a6cb415a51526fbd88b6581.tar.gz
rneovim-68603998b91a7fbf9a6cb415a51526fbd88b6581.tar.bz2
rneovim-68603998b91a7fbf9a6cb415a51526fbd88b6581.zip
test: add Lua functional tests for Ex mode
Diffstat (limited to 'src')
-rw-r--r--src/nvim/testdir/test_ex_mode.vim5
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)