view src/testdir/test_erasebackword.vim @ 27430:da3a39fd0964 v8.2.4243

patch 8.2.4243: Lua tests fail with Lua 5.4.4 Commit: https://github.com/vim/vim/commit/57ff2b7068c03c89fbfc8930e1325274e72d22a3 Author: =?UTF-8?q?Jakub=20Kul=C3=ADk?= <kulikjak@gmail.com> Date: Fri Jan 28 17:20:03 2022 +0000 patch 8.2.4243: Lua tests fail with Lua 5.4.4 Problem: Lua tests fail with Lua 5.4.4. Solution: Check messages like before Lua 5.4.3. (Jakub Kul?k, closes https://github.com/vim/vim/issues/9652)
author Bram Moolenaar <Bram@vim.org>
date Fri, 28 Jan 2022 18:30:03 +0100
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