Mercurial > vim
view src/testdir/test_erasebackword.vim @ 13001:b5a93ba1f01a
Added tag v8.0.1376 for changeset 6f98a5fd0c1996ae18df4bd3daaedeb348c925d6
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 05 Dec 2017 21:45:05 +0100 |
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