Objective
- Yank a line and use it to overwrite "some" of the lines following it.
Assumption
It is preferrable for this case to select manually which lines to apply the substitution to. i.e. automated find and replace is not desired.
Analogy
Think of this process as creating a "stamp" from a line of text and going through a list of items, each item being a line of text following the "stamp" line, and deciding whether that line should be overridden using the contents of the "stamp" or not. If so, replace the line with the "stamp".
The last step, namely to trigger deletion/replacement of the line under the cursor with the contents of the stamp, should be as easy as possible, preferably as easy as pressing . (repeat last change) or @@ (execute the contents of macro register @).
Issue
The simple workflow of:
- Positioning cursor on the line to be copied (using movement commands)
V(starting Visual mode linewise)y(yank text into unspecified register)- Manually position cursor onto line to be replaced (using movement commands)
V(starting Visual mode linewise) (to select the text to be replaced)p(put the text in the unspecified register after the cursor)
does not work if applied multiple times.
Specifically, replacing the text overrides the register containing the line initially copied and intended to be used as a "stamp".
What I have tried
I have tried using "_y to either yank or delete into named register "underscore", avoiding the loss of the contents of the stamp, but I am looking for something that ends up being quick and comfortable to type as I manually go through the list and apply replacements where I see fit.
What I would prefer not to use
I had rather not use macros or "remaps" for this, if I can help it.
Illustrative sample file
See the sample starting file below, followed by the desired final stage, for further clarity.
Sample file, starting condition
At this stage, I select the blueberry and make it my "stamp".
blueberry
apple
banana
coconut
apple
banana
coconut
apple
banana
coconut
Sample file, desired final state
After having moved through the list, I have applied some replacements, using the "stamp" "on top" of some lines, making them the same as the "stamp" line.
blueberry
apple
banana
blueberry
apple
banana
coconut
apple
banana
blueberry