Mercurial > vim
view src/testdir/test_erasebackword.vim @ 13705:7dd71a906267
Added tag v8.0.1724 for changeset e7b8c896fa96e91f239ec522e3b7bb885887f53f
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 16 Apr 2018 15:45:07 +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