view src/testdir/test_erasebackword.vim @ 29908:f60329b1ff1d v9.0.0292

patch 9.0.0292: test causes another test to fail Commit: https://github.com/vim/vim/commit/d1f8fd59074d9c8b4d00ccdea77726a9195e0be4 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 27 22:51:25 2022 +0100 patch 9.0.0292: test causes another test to fail Problem: Test causes another test to fail. Solution: Redraw to remove the popup window
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Aug 2022 00:00:03 +0200
parents 08940efa6b4e
children
line wrap: on
line source

" Test for i_CTRL-W

func Test_erasebackword()
  enew

  exe "normal o wwwこんにちわ世界ワールドvim \<C-W>"
  call assert_equal(' wwwこんにちわ世界ワールド', getline('.'))
  exe "normal o wwwこんにちわ世界ワールドvim \<C-W>\<C-W>"
  call assert_equal(' wwwこんにちわ世界', getline('.'))
  exe "normal o wwwこんにちわ世界ワールドvim \<C-W>\<C-W>\<C-W>"
  call assert_equal(' wwwこんにちわ', getline('.'))
  exe "normal o wwwこんにちわ世界ワールドvim \<C-W>\<C-W>\<C-W>\<C-W>"
  call assert_equal(' www', getline('.'))
  exe "normal o wwwこんにちわ世界ワールドvim \<C-W>\<C-W>\<C-W>\<C-W>\<C-W>"
  call assert_equal(' ', getline('.'))
  exe "normal o wwwこんにちわ世界ワールドvim \<C-W>\<C-W>\<C-W>\<C-W>\<C-W>\<C-W>"
  call assert_equal('', getline('.'))

  enew!
endfunc

" vim: shiftwidth=2 sts=2 expandtab