How do I duplicate a whole line in Vim in a similiar way to CTRL+D in IntelliJ IDEA/Resharper or Ctrl Alt Arrow in Eclipse?
|
|
The Ex way: Reference: Normal mode: see other answers. |
|||||||||||||||
|
or
then
or
|
|||||||||||||||||||||
|
|
|
|||||||||||||
|
|
If you want another way :-)
There are many variations on this.
see http://www.vim.org/htmldoc/help.html for more fun |
||||
|
|
|
yy will yank the current line without deleting it dd will delete the current line p will 'put' a line grabbed by either of the previous methods |
|||
|
|
|
You can also try <C-x><C-l> which will repeat the last line from insert mode and brings you a completion window with all of the lines. It works almost like <C-p> |
|||
|
|
I like: Shift-V (to select the whole line immediately and let you select other lines if you want), y, p |
|||
|
|
|
yyp - remember it with "yippee!" Multiple lines with a number in between: y7yp |
|||||
|
|
Another option would be to go with:
gives you the advantage of preserving the cursor position. |
|||
|
|
|
1 gotcha: when you use "p" to put the line, it puts it after the line your cursor is on, so if you want to add the line after the line you're yanking, don't move the cursor down a line before putting the new line. |
|||
|
|