I normally copy a line pressing 'y' key twice, then pressing 'p' or 'P' to paste after or before a current line, respectively. Sometimes, however I need to replace a current line with the yanked line. How to do it?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
Pasting over a visual selection should work: V p (V to select the entire line visually, p to replace it with the contents of the default register). |
|||||||||||||||||
|
|
You can delete the current line without replacing your copied/yanked line with |
|||||||
|
|
Delete the line before or after yanking the (possibly named) buffer. Delete after if you didn't name yank into a named buffer - or use |
|||
|
|
|
You can also just turn off the buffer-overwrite side-effect behavior as needed by putting this script in your .vimrc vim toggling buffer overwrite behavior when deleting Then you can toggle the overwrite behavior using key combo ,, (two commas) |
|||
|
|
pkdd– Pointy May 26 '11 at 15:04