vote up 12 vote down star
2

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?

flag

10 Answers

vote up 27 vote down check
yy (copy the line)

or

dd (delete the line)

then

p (paste the copied or deleted text **after** the current line)

or

P (paste the copied or deleted text **before** the current line)
link|flag
Can also use capital Y to copy the whole line. – camflan Sep 28 '08 at 15:55
An excellent point. For some reason though, I find hitting y twice is faster for me than SHIFT-y – Mark Biek Oct 6 '08 at 12:35
vote up 9 vote down

YP or Yp or yyp

link|flag
vote up 4 vote down

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

link|flag
vote up 4 vote down

If you want another way :-)

"ayy this will store the line in buffer a

"ap this will put the contents of buffer a at the cursor.

there are many variations on this.

"a5yy this will store the 5 lines in buffer a

see http://www.vim.org/htmldoc/help.html for more fun

link|flag
vote up 2 vote down

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>

link|flag
This is very useful, but to avoid having to press many keys I have mapped it to just CTRL-L, this is my map: inoremap ^L ^X^L – Jorge Gajon May 11 at 6:38
vote up 0 vote down

Do this:

yy p

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

yyp - remember it with "yippee!"

Multiple lines with a number in between:

y7yp

link|flag
7yy is equivalent to y7y and is probably easier to remember how to do. – graywh Jan 4 at 21:25
vote up 0 vote down

Another option would be to go with:

nmap <C-d> mzyyp`z

gives you the advantage of preserving the cursor position.

link|flag
vote up 0 vote down

I like: Shift-V (to select the whole line immediately and let you select other lines if you want), y, p

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.