diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2014-10-25 14:50:33 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2014-10-25 14:52:29 -0400 |
commit | d14c12484767429b7e8906a41a77c9c103d50283 (patch) | |
tree | b762d966ff20b62d4bd32ef8da3fb62d9385bdeb /src | |
parent | 65942d3a8d84510fcee2dd1c6306a5af13296c84 (diff) | |
download | rneovim-d14c12484767429b7e8906a41a77c9c103d50283.tar.gz rneovim-d14c12484767429b7e8906a41a77c9c103d50283.tar.bz2 rneovim-d14c12484767429b7e8906a41a77c9c103d50283.zip |
vim-patch:7.4.433
Problem: Test 75 fails on MS-Windows.
Solution: Use ":normal" instead of feedkeys(). (Michael Soyka)
https://code.google.com/p/vim/source/detail?r=v7-4-433
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test75.in | 8 | ||||
-rw-r--r-- | src/nvim/version.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/testdir/test75.in b/src/nvim/testdir/test75.in index b7f2783f54..8fabccdf52 100644 --- a/src/nvim/testdir/test75.in +++ b/src/nvim/testdir/test75.in @@ -23,16 +23,16 @@ STARTTEST Go:" :" Outside of the range, minimum :inoremap <Char-0x1040> a -:call feedkeys("a\u1040\<Esc>") +:execute "normal a\u1040\<Esc>" :" Inside of the range, minimum :inoremap <Char-0x103f> b -:call feedkeys("a\u103f\<Esc>") +:execute "normal a\u103f\<Esc>" :" Inside of the range, maximum :inoremap <Char-0xf03f> c -:call feedkeys("a\uf03f\<Esc>") +:execute "normal a\uf03f\<Esc>" :" Outside of the range, maximum :inoremap <Char-0xf040> d -:call feedkeys("a\uf040\<Esc>") +:execute "normal a\uf040\<Esc>" :" :/^eof/+1,$w! test.out :qa! diff --git a/src/nvim/version.c b/src/nvim/version.c index 467cc01c42..4b3c93832a 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -229,7 +229,7 @@ static int included_patches[] = { 436, //435, //434, - //433, + 433, //432 NA //431 NA //430, |