Created
November 19, 2015 13:58
-
-
Save AndrewJDR/c90aef5694c4fa538ddf to your computer and use it in GitHub Desktop.
replace-paste-yanked-text-in-vim-without-yanking-the-deleted-lines
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" 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