view src/testdir/test_erasebackword.vim @ 26688:4b8d0a62f78b v8.2.3873

patch 8.2.3873: go.mod files are not recognized Commit: https://github.com/vim/vim/commit/82b3b4c6cf2973fe767f8e2311482af0bd95267e Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 22 19:19:08 2021 +0000 patch 8.2.3873: go.mod files are not recognized Problem: go.mod files are not recognized. Solution: Check for the file name. (closes https://github.com/vim/vim/issues/9380)
author Bram Moolenaar <Bram@vim.org>
date Wed, 22 Dec 2021 20:30:04 +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