view src/testdir/test_erasebackword.vim @ 14879:ccedb80725c5 v8.1.0451

patch 8.1.0451: Win32 console: keypad keys don't work commit https://github.com/vim/vim/commit/2bc152ab53c4b01072edf6ec2ff61e504cb03cbe Author: Bram Moolenaar <Bram@vim.org> Date: Wed Oct 3 20:44:20 2018 +0200 patch 8.1.0451: Win32 console: keypad keys don't work Problem: Win32 console: keypad keys don't work. Solution: Use numbers instead of characters to avoid the value becoming negative. (Mike Williams)
author Christian Brabandt <cb@256bit.org>
date Wed, 03 Oct 2018 20:45:06 +0200
parents 90aaa974594e
children 2dcaa860e3fc
line wrap: on
line source


func Test_erasebackword()
  if !has('multi_byte')
    return
  endif

  set encoding=utf-8
  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!
  set encoding&
endfunc