view src/testdir/test_erasebackword.vim @ 25034:8d660d1cca8d v8.2.3054

patch 8.2.3054: Vim9: unpack assignment using "_" after semicolon fails Commit: https://github.com/vim/vim/commit/4d5dfe20839e9d13c95eaf4254467f952653b042 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 26 13:59:29 2021 +0200 patch 8.2.3054: Vim9: unpack assignment using "_" after semicolon fails Problem: Vim9: unpack assignment using "_" after semicolon fails. Solution: Drop the expression result. (closes https://github.com/vim/vim/issues/8453)
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Jun 2021 14:00:06 +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