Fix quoting for escaped <C-V> sequence
This bug would probably have never affected anyone, since it only comes up when a normal-mode motion results in a blockwise selection.
This commit is contained in:
parent
2d7ef58550
commit
ec7f183583
@ -33,7 +33,7 @@ function! s:exchange_get(type, vis)
|
||||
let [start, end] = s:store_pos("'[", "']")
|
||||
silent exe "normal! '[V']y"
|
||||
elseif a:type == 'block'
|
||||
let type = '\<C-V>'
|
||||
let type = "\<C-V>"
|
||||
let [start, end] = s:store_pos("'[", "']")
|
||||
silent exe "normal! `[\<C-V>`]y"
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user