view src/testdir/test_feedkeys.vim @ 18311:60fce48438e2 v8.1.2150

patch 8.1.2150: no test for 'ttymouse' set from xterm version response Commit: https://github.com/vim/vim/commit/03b00476eed43dbc25222549c00b3af28e79b350 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Oct 14 22:22:03 2019 +0200 patch 8.1.2150: no test for 'ttymouse' set from xterm version response Problem: No test for 'ttymouse' set from xterm version response. Solution: Test the three possible values.
author Bram Moolenaar <Bram@vim.org>
date Mon, 14 Oct 2019 22:30:03 +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