mirror of
https://github.com/neovim/neovim.git
synced 2025-09-07 20:08:17 +00:00

Hope this will make people using feed_command less likely: this hides bugs. Already found at least two: 1. msgpackparse() will show internal error: hash_add() in case of duplicate keys, though it will still work correctly. Currently silenced. 2. ttimeoutlen was spelled incorrectly, resulting in option not being set when expected. Test was still functioning somehow though. Currently fixed.
65 lines
1.8 KiB
Lua
65 lines
1.8 KiB
Lua
-- vim: set foldmethod=marker foldmarker=[[,]] :
|
|
-- Test for visual block shift and tab characters.
|
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
|
local clear, feed, insert = helpers.clear, helpers.feed, helpers.insert
|
|
local feed_command, expect = helpers.feed_command, helpers.expect
|
|
|
|
describe('visual block shift and tab characters', function()
|
|
setup(clear)
|
|
|
|
it('is working', function()
|
|
insert([[
|
|
one two three
|
|
one two three
|
|
one two three
|
|
one two three
|
|
one two three
|
|
|
|
abcdefghijklmnopqrstuvwxyz
|
|
abcdefghijklmnopqrstuvwxyz
|
|
abcdefghijklmnopqrstuvwxyz
|
|
abcdefghijklmnopqrstuvwxyz
|
|
abcdefghijklmnopqrstuvwxyz]])
|
|
|
|
feed('gg')
|
|
feed([[fe<C-v>4jR<esc>ugvr1:'<lt>,'>yank A<cr>]])
|
|
feed_command('/^abcdefgh')
|
|
feed('<C-v>4jI <esc>j<lt><lt>11|D')
|
|
feed('j7|a <esc>')
|
|
feed('j7|a <esc>')
|
|
feed('j7|a <esc>4k13|<C-v>4j<lt>')
|
|
feed_command('$-5,$yank A')
|
|
feed_command([[$-4,$s/\s\+//g]])
|
|
feed('<C-v>4kI <esc>j<lt><lt>')
|
|
feed('j7|a <esc>')
|
|
feed('j7|a <esc>')
|
|
feed('j7|a <esc>4k13|<C-v>4j3<lt>')
|
|
feed_command('$-4,$yank A')
|
|
|
|
-- Put @a and clean empty lines
|
|
feed_command('%d')
|
|
feed_command('0put a')
|
|
feed_command('$d')
|
|
|
|
-- Assert buffer contents.
|
|
expect([[
|
|
on1 two three
|
|
on1 two three
|
|
on1 two three
|
|
on1 two three
|
|
on1 two three
|
|
|
|
abcdefghijklmnopqrstuvwxyz
|
|
abcdefghij
|
|
abc defghijklmnopqrstuvwxyz
|
|
abc defghijklmnopqrstuvwxyz
|
|
abc defghijklmnopqrstuvwxyz
|
|
abcdefghijklmnopqrstuvwxyz
|
|
abcdefghij
|
|
abc defghijklmnopqrstuvwxyz
|
|
abc defghijklmnopqrstuvwxyz
|
|
abc defghijklmnopqrstuvwxyz]])
|
|
end)
|
|
end)
|