view src/testdir/test_feedkeys.vim @ 20273:6209800492fc v8.2.0692

patch 8.2.0692: startup test fails on MS-Windows Commit: https://github.com/vim/vim/commit/4515bcdec8f3ba54f9d671cc37b9c9b3e19ea999 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 3 18:21:04 2020 +0200 patch 8.2.0692: startup test fails on MS-Windows Problem: Startup test fails on MS-Windows. Solution: Allow for any path.
author Bram Moolenaar <Bram@vim.org>
date Sun, 03 May 2020 18:30:04 +0200
parents 6b70b9cdebfc
children 08940efa6b4e
line wrap: on
line source

" Test feedkeys() function.

func Test_feedkeys_x_with_empty_string()
  new
  call feedkeys("ifoo\<Esc>")
  call assert_equal('', getline('.'))
  call feedkeys('', 'x')
  call assert_equal('foo', getline('.'))

  " check it goes back to normal mode immediately.
  call feedkeys('i', 'x')
  call assert_equal('foo', getline('.'))
  quit!
endfunc