diff options
author | erw7 <erw7.github@gmail.com> | 2019-08-05 23:15:22 +0900 |
---|---|---|
committer | erw7 <erw7.github@gmail.com> | 2019-08-17 12:29:09 +0900 |
commit | 861a7604d4a5334c60c413c26c97f1d91e647335 (patch) | |
tree | 6584401da3f7c0c1fb3c32594b3007e99a37d193 | |
parent | 619f1360752ad121426b5b352a05d28f8069b590 (diff) | |
download | rneovim-861a7604d4a5334c60c413c26c97f1d91e647335.tar.gz rneovim-861a7604d4a5334c60c413c26c97f1d91e647335.tar.bz2 rneovim-861a7604d4a5334c60c413c26c97f1d91e647335.zip |
Change test execution conditions
Since neovim needs iconv to process cp932, it changes the test execution
condition.
-rw-r--r-- | src/nvim/testdir/test_increment_dbcs.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_increment_dbcs.vim b/src/nvim/testdir/test_increment_dbcs.vim index 474a16feeb..e5d5ccffb3 100644 --- a/src/nvim/testdir/test_increment_dbcs.vim +++ b/src/nvim/testdir/test_increment_dbcs.vim @@ -1,5 +1,7 @@ " Tests for using Ctrl-A/Ctrl-X using DBCS. -if !has('multi_byte') +" neovim needs an iconv to handle cp932. Please do not remove the following +" conditions. +if !has('iconv') finish endif scriptencoding cp932 |