view src/testdir/test_feedkeys.vim @ 21664:60ba361a7fdb v8.2.1382

patch 8.2.1382: Vim9: using :import in filetype plugin gives an error Commit: https://github.com/vim/vim/commit/8e1986e3896cc8c2a05fc6291a39ebb275e1cebf Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 6 22:11:06 2020 +0200 patch 8.2.1382: Vim9: using :import in filetype plugin gives an error Problem: Vim9: using :import in filetype plugin gives an error. Solution: Allow commands with the EX_LOCK_OK flag. (closes https://github.com/vim/vim/issues/6636)
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 Aug 2020 22:15:05 +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