view src/testdir/test_feedkeys.vim @ 27281:f7d73708b391 v8.2.4169

patch 8.2.4169: MS-Windows: unnessary casts and other minor things Commit: https://github.com/vim/vim/commit/45f9cfbdc75e10d420039fbe98d9f554bd415213 Author: K.Takata <kentkt@csc.jp> Date: Fri Jan 21 11:11:00 2022 +0000 patch 8.2.4169: MS-Windows: unnessary casts and other minor things Problem: MS-Windows: unnessary casts and other minor things. Solution: Clean up the MS-Windows code. (Ken Takata, closes https://github.com/vim/vim/issues/9583)
author Bram Moolenaar <Bram@vim.org>
date Fri, 21 Jan 2022 12:15:03 +0100
parents e06cbcf4b94b
children 53c608c7ea9e
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

func Test_feedkeys_with_abbreviation()
  new
  inoreabbrev trigger value
  call feedkeys("atrigger ", 'x')
  call feedkeys("atrigger ", 'x')
  call assert_equal('value value ', getline(1))
  bwipe!
  iunabbrev trigger
endfunc

" vim: shiftwidth=2 sts=2 expandtab