Mercurial > vim
changeset 6195:dd3dac42cb9b v7.4.433
updated for version 7.4.433
Problem: Test 75 fails on MS-Windows.
Solution: Use ":normal" instead of feedkeys(). (Michael Soyka)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 09 Sep 2014 13:52:58 +0200 |
parents | 31e565d5fcb1 |
children | 01350c53b37d |
files | src/testdir/test75.in src/version.c |
diffstat | 2 files changed, 6 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/test75.in +++ b/src/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!