Duplicate a whole line in Vim

yy or Y to copy the line 
or 
dd to delete (cutting) the line

then

p to paste the copied or deleted text after the current line 
or 
P to paste the copied or deleted text before the current line

原文地址:https://www.cnblogs.com/kakaisgood/p/9145960.html