mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
parent
b7e6c1b525
commit
d5d51308c0
@ -871,6 +871,10 @@ func Test_visual_block_mode()
|
||||
" reproducible if this operation is performed manually.
|
||||
"call assert_equal(['aaxa', 'bbxb', 'ccxc'], getline(1, '$'))
|
||||
call assert_equal(['aaxa', 'bbba', 'ccca'], getline(1, '$'))
|
||||
" Repeat the previous test but use 'l' to move the cursor instead of '$'
|
||||
call setline(1, ['aaa', 'bbb', 'ccc'])
|
||||
exe "normal! gg2l\<C-V>2jA\<Left>x"
|
||||
call assert_equal(['aaxa', 'bbxb', 'ccxc'], getline(1, '$'))
|
||||
|
||||
" Change a characterwise motion to a blockwise motion using CTRL-V
|
||||
%d _
|
||||
|
Loading…
Reference in New Issue
Block a user