view src/testdir/test_feedkeys.vim @ 23434:0fe2cdcff19b v8.2.2260

patch 8.2.2260: window resize test fails in very wide terminal Commit: https://github.com/vim/vim/commit/5efe0e5d16db070f0ab0b944686139e597afe166 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 1 14:31:34 2021 +0100 patch 8.2.2260: window resize test fails in very wide terminal Problem: Window resize test fails in very wide terminal. Solution: Resize using the 'columns' option. (Vladimir Lomov, closes https://github.com/vim/vim/issues/7592)
author Bram Moolenaar <Bram@vim.org>
date Fri, 01 Jan 2021 14:45:04 +0100
parents 08940efa6b4e
children e06cbcf4b94b
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

" vim: shiftwidth=2 sts=2 expandtab