mirror of
https://github.com/neovim/neovim.git
synced 2025-12-15 19:05:40 +00:00
24
test/functional/legacy/erasebackword_spec.lua
Normal file
24
test/functional/legacy/erasebackword_spec.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
-- Test for CTRL-W in Insert mode
|
||||
|
||||
local helpers = require('test.functional.helpers')
|
||||
local clear, feed, expect = helpers.clear, helpers.feed, helpers.expect
|
||||
|
||||
describe('CTRL-W in Insert mode', function()
|
||||
setup(clear)
|
||||
|
||||
it('works for multi-byte characters', function()
|
||||
|
||||
for i = 1, 6 do
|
||||
feed('o wwwこんにちわ世界ワールドvim ' .. string.rep('<C-w>', i) .. '<esc>')
|
||||
end
|
||||
|
||||
expect([[
|
||||
|
||||
wwwこんにちわ世界ワールド
|
||||
wwwこんにちわ世界
|
||||
wwwこんにちわ
|
||||
www
|
||||
|
||||
]])
|
||||
end)
|
||||
end)
|
||||
Reference in New Issue
Block a user