From 3677189bfc1978b3b55f70d75d93bae54fa1f704 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Fri, 10 Feb 2017 09:29:27 -0500 Subject: vim-patch:7.4.1954 Problem: No test for what 7.4.1948 fixes. Solution: Add a test. (Hirohito Higashi, closes vim/vim#880) https://github.com/vim/vim/commit/d388d2ac8bf8c770bf97dc406e99a20ba5104855 Some adjustments had to be made from upstream since nvim always uses utf-8 internally. * Removed the 'set encoding=cp932' line from the test * Adjusted the expected values for getpos(), since the number of bytes is different in utf-8 --- src/nvim/testdir/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/testdir/Makefile') diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 59c93f1673..bca18adef8 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -37,6 +37,7 @@ NEW_TESTS = \ test_hardcopy.res \ test_help_tagjump.res \ test_history.res \ + test_increment_dbcs.res \ test_langmap.res \ test_match.res \ test_matchadd_conceal.res \ -- cgit From af6bc3b3bfaa3c8b170648deddab3fdf4ea03735 Mon Sep 17 00:00:00 2001 From: James McCoy Date: Fri, 10 Feb 2017 09:53:45 -0500 Subject: Re-add upstream's test_increment.vim --- src/nvim/testdir/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/testdir/Makefile') diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index bca18adef8..55ee653a1e 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -37,6 +37,7 @@ NEW_TESTS = \ test_hardcopy.res \ test_help_tagjump.res \ test_history.res \ + test_increment.res \ test_increment_dbcs.res \ test_langmap.res \ test_match.res \ -- cgit