diff options
author | watiko <service@mail.watiko.net> | 2016-02-16 00:17:07 +0900 |
---|---|---|
committer | watiko <service@mail.watiko.net> | 2016-02-16 00:18:42 +0900 |
commit | 4f3ea0379eb015fc7b4f93c15e3baadf1c17e7bd (patch) | |
tree | 340ee58b8c2e17ece0bee0c4bd7f382907c856b0 | |
parent | 36803323253e336e0d4a6efaa61c8b647ef78eba (diff) | |
download | rneovim-4f3ea0379eb015fc7b4f93c15e3baadf1c17e7bd.tar.gz rneovim-4f3ea0379eb015fc7b4f93c15e3baadf1c17e7bd.tar.bz2 rneovim-4f3ea0379eb015fc7b4f93c15e3baadf1c17e7bd.zip |
vim-patch:7.4.932
Problem: test_utf8 has confusing dummy command.
Solution: Use a real command instead of a colon.
https://github.com/vim/vim/commit/8f08dab18df6dbf6c4b4973fd2d480e4bffb82d8
-rw-r--r-- | src/nvim/version.c | 2 | ||||
-rw-r--r-- | test/functional/legacy/utf8_spec.lua | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/version.c b/src/nvim/version.c index 8268465743..fd84f566fd 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -356,7 +356,7 @@ static int included_patches[] = { // 935, // 934 NA // 933, - // 932, + 932, // 931 NA // 930 NA 929, diff --git a/test/functional/legacy/utf8_spec.lua b/test/functional/legacy/utf8_spec.lua index d2315b3590..d33ba6b5fd 100644 --- a/test/functional/legacy/utf8_spec.lua +++ b/test/functional/legacy/utf8_spec.lua @@ -57,21 +57,21 @@ describe('utf8', function() function! CustomComplete1(lead, line, pos) return ['あ', 'い'] endfunction - command -nargs=1 -complete=customlist,CustomComplete1 Test1 :]]) + command -nargs=1 -complete=customlist,CustomComplete1 Test1 echo]]) feed(":Test1 <C-L>'<C-B>$put='<CR>") source([[ function! CustomComplete2(lead, line, pos) return ['あたし', 'あたま', 'あたりめ'] endfunction - command -nargs=1 -complete=customlist,CustomComplete2 Test2 :]]) + command -nargs=1 -complete=customlist,CustomComplete2 Test2 echo]]) feed(":Test2 <C-L>'<C-B>$put='<CR>") source([[ function! CustomComplete3(lead, line, pos) return ['Nこ', 'Nん', 'Nぶ'] endfunction - command -nargs=1 -complete=customlist,CustomComplete3 Test3 :]]) + command -nargs=1 -complete=customlist,CustomComplete3 Test3 echo]]) feed(":Test3 <C-L>'<C-B>$put='<CR>") expect([[ |