How to use command + V to enter insert mode and copy in Vim? -
How to use command + V to enter insert mode and copy in Vim? -
is there method in os x such vim come in insert mode automatically , re-create text, instead of having come in insert mode first , press command + v? or more generically, how map command keys in vim in os x? utilize command line vim, not macvim.
add vimrc: nnoremap <c-v> p:startinsert!<cr>
this insert clipboard content , place cursor after inserted text , alter insert mode.
but why want insert mode altogether? press p in normal mode!
vim
Comments
Post a Comment