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

At least once per day i have the following situation:

A: This line should also replace line X
...
X: This is line should be replaced

I believe that I don't perform that task efficiently.

What I do:

  • Go to line A: AG
  • Yank line A: yy
  • Go to line X: XG
  • Paste line A: P
  • Move to old line: j
  • Delete old line: dd

This has the additional disadvantage that line X is now in the default register, which is annoying if I find another line that should be replaced with A. Yanking to and pasting from an additional register ("ayy, "aP) makes this simple task even less efficient.

My Questions:

  • Did I miss a built-in Vim command to replace a line yanked before?
  • If not, how can I bind my own command that leaves (or restores) the yanked line in the default register?
share|improve this question
This is my single biggest issue with Vim's editing model. I'd love to know a solution. A CUA editor distinguishes between cut and delete, so you just cut some text, then you can go delete and paste all you want. With Vim, any delete you make trashes your cut text. You end up using far more keystrokes than you would another editor. – Mud Dec 26 '10 at 10:59
3  
YankRing – ajreal Dec 26 '10 at 11:40
@Mud learn about :move and the black hole register (_) (or in fact, just registers) – sehe Mar 16 '12 at 10:53
@sehe I'm perfectly aware of registers, but that adds 4 keystrokes per cut/paste operation and requires more forethought. When you're doing a lot of editing, that adds up quick. – Mud Mar 20 '12 at 17:08

6 Answers

up vote 18 down vote accepted

What I would do :

  1. aG
  2. Y
  3. xG
  4. Vp

You don't have to leave normal mode, but it does yank the line. You can however use V"0p which will always put the line yanked in step 2.

share|improve this answer
Is Y an alias to yy? – crispy Dec 26 '10 at 13:52
2  
@duddle: yes, Y is synonym for yy – icecrime Dec 26 '10 at 13:53
+1 Certainly better than my approach. Thanks! – Brian Rasmussen Dec 28 '10 at 10:28

This has the additional disadvantage that line X is now in the default register, which is annoying if I find another line that should be replaced with A.

To delete text without affecting the normal registers, you can use the Black hole register "_:

"_dd
share|improve this answer
Ah. Black hole register. Neat. – crispy Dec 27 '10 at 14:24
1  
I added some mappings to my .vimrc to make d and dd always use the black hole, and x and xx perform what most editors would call a "cut" (delete and save to default register): noremap x d noremap xx dd noremap d "_d noremap dd "_dd – IMSoP Jan 16 at 15:02

You can use this with visual mode.

  • Go to line A: AG
  • Select the line with visual mode: VESC
  • go to line X: XG
  • Enter substitute mode for the line: S
  • Paste the line you copied: shift+insert (or whatever other you mapping you have for pasting from the clipboard).
share|improve this answer
Ah. Didn't know about V and S. However, your steps do not work for me as I don't yank to my OS clipboard, which is the only one I can access in insert mode. So I would have to leave insert mode first. – crispy Dec 26 '10 at 13:38

I would use commandline (Ex) mode and do the following two commands

:XmA
:Ad

This simply moves line X to just under A, then deleting A moves that line up

For example

:7m3
:3d
share|improve this answer
Can you give an example? When I press e.g. 50Gm30G Vim goes to line 50 and then to the bottom and that's it. Also :Ad doesn't do anything for A=50 or A=50G – crispy Feb 1 '12 at 8:52
@crispy: the commands are ex commands – sehe Mar 16 '12 at 10:40

Here's what I would do

  • Move beginning of line A, AG (where A is a line number obviously)
  • Yank line to some register, e.g. a (without new line). Type "ay$
  • Move to insert line, XG
  • Substitute line, S
  • Insert from register a, Ctrl-Ra
share|improve this answer

Actually, 1. yy 2. j (move to the line you want to replace),and then 3. Vp (uppercase v and then p, will replace with the yanked content)

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.