view src/testdir/test_erasebackword.vim @ 20883:8bc11506d787 v8.2.0993

patch 8.2.0993: Vim9 script test fails with normal features Commit: https://github.com/vim/vim/commit/f7d267ef20a38eb316915b91cb5a89021555f9d8 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jun 17 12:04:54 2020 +0200 patch 8.2.0993: Vim9 script test fails with normal features Problem: Vim9 script test fails with normal features. Solution: Use :func instead of :def for now.
author Bram Moolenaar <Bram@vim.org>
date Wed, 17 Jun 2020 12:15:05 +0200
parents 2dcaa860e3fc
children 08940efa6b4e
line wrap: on
line source


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