Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
6  
Would be cool if you could change the accepted answer to the second one. – Martin Konicek Nov 9 '12 at 14:02
Seconding @MartinKonicek 's request! – Kevin Lin Apr 9 at 4:51

11 Answers

up vote 91 down vote accepted

The Ex way: :t. will duplicate the line. :t 7 will copy it after line 7. :,+t0 will copy current and next line at the beginning of the file. :1,t$ will copy lines from beginning till cursor position to the end.

Reference: :help :t

Normal mode: see other answers.

share|improve this answer
do you know if`s there a way to do this in visual mode? One of my most common patterns of usage is like visual select 3 lines + :d or :y, for example.. – Breno Salgado Jun 30 '12 at 0:53
When you press : in visual mode, it is transformed to '<,'> so it pre-selects the line range the visual selection spanned over. So, in visual mode, :t0 will copy the lines at the beginning. – Benoit Jun 30 '12 at 14:17
For the record: when you type a colon (:) you go into command line mode where you can enter Ex commands. vimdoc.sourceforge.net/htmldoc/cmdline.html Ex commands can be really powerful and terse. The yyp solutions are "Normal mode" commands. If you want to copy/move/delete a far-away line or range of lines an Ex command can be a lot faster. – Niels Bom Jul 31 '12 at 8:21
2  
Downvoted not due to a problem with the answer as such (although it wouldn't work for my situation, I have no idea the line number I want to duplicate to) but because it REALLY shouldn't be the top / accepted answer for this commonly searched question. – mjaggard Dec 12 '12 at 12:57
1  
@mjaggard: accepted answers are always at the top, regardless of their score. Yes I added that answer as a complement, and it seems it suited the OP well. – Benoit Dec 12 '12 at 14:57
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)
share|improve this answer
36  
Can also use capital Y to copy the whole line. – camflan Sep 28 '08 at 15:55
12  
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
3  
Hah! so many incredible answers. vim rules – droope Sep 29 '11 at 14:59
2  
@camflan I think the Y should be "copy from the cursor to the end" – Vdt Jul 19 '12 at 11:35
3  
and 2yy can be used to copy 2 lines (and for any other n) – Amir Ali Akbari Oct 9 '12 at 10:33
show 1 more comment

YP or Yp or yyp.

share|improve this answer
3  
+1 for the 'yyp' one. Easy to remember, no need to pay attention to 'yy' and 'p' parts separately. – Helbreder Oct 20 '11 at 9:42
2  
+1 for the YP. Fast and shortest to remember – psur Jul 18 '12 at 7:39
+1 for yyp. this answer should be an approved one. – gakhov Aug 22 '12 at 11:09
+1 for all three, YP, Yp, and yyp since they all work well. – Anthony Oct 7 '12 at 22:46

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

share|improve this answer

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

share|improve this answer

Do this:

yy p

share|improve this answer
5  
Don't type the space. – Niels Bom Jul 31 '12 at 8:15

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>

share|improve this answer
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 '09 at 6:38

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

share|improve this answer

yyp - remember it with "yippee!"

Multiple lines with a number in between:

y7yp

share|improve this answer
4  
7yy is equivalent to y7y and is probably easier to remember how to do. – graywh Jan 4 '09 at 21:25

Another option would be to go with:

nmap <C-d> mzyyp`z

gives you the advantage of preserving the cursor position.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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