Skip to content

Instantly share code, notes, and snippets.

@AndrewJDR
Created November 19, 2015 13:58
Show Gist options
  • Save AndrewJDR/c90aef5694c4fa538ddf to your computer and use it in GitHub Desktop.
Save AndrewJDR/c90aef5694c4fa538ddf to your computer and use it in GitHub Desktop.
replace-paste-yanked-text-in-vim-without-yanking-the-deleted-lines
" https://web.archive.org/web/20151015122526/http://superuser.com/questions/321547/how-do-i-replace-paste-yanked-text-in-vim-without-yanking-the-deleted-lines
vnoremap p "0p
vnoremap P "0P
"vnoremap y "0y
vnoremap d "0d
vnoremap x "0x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment