OJFord
OJFord

Reputation: 11130

Replace word with what's ready to put in vi/vim?

For example, I have:

rm -f $(NAME).elf $(name).d

where the second 'name' is a typo, and should also be 'NAME'.

So on 'N', I did yw, and then moved to 'n'.

I realised that if I now hit cw to change it, I'll be in insert mode - but I thought ah well, it's only one extra key (ESC) and then I can just p the corrected version in.

But in that case, p did exactly what u would have done, it put 'name' back. I guess because the 'old text' is loaded into the register on change too, which I didn't realise.


Is there a "replace with register" command that can be applied to a word/letter/etc.?

Upvotes: 6

Views: 489

Answers (4)

romainl
romainl

Reputation: 196576

You could simply change the case of name with gUiw.

Upvotes: 0

mMontu
mMontu

Reputation: 9273

Yet another way:

ciw<Ctrl-r>0

or

ce<Ctrl-r>0

This would allow for repeating with . without the use of any plugin, as you mentioned on the comments that you are currently avoiding them.

Upvotes: 2

Kent
Kent

Reputation: 195079

after you yw on NAME and moved to name you can do:

viwp

or golf abit: vep

Upvotes: 9

Ingo Karkat
Ingo Karkat

Reputation: 172590

I need this so often, I wrote a plugin to simplify and allow maximum speed: ReplaceWithRegister.

This plugin offers a two-in-one gr command that replaces text covered by a {motion} / text object, entire line(s) or the current selection with the contents of a register; the old text is deleted into the black-hole register, i.e. it's gone. It transparently handles many corner cases and allows for a quick repeat via the standard . command. Should you not like it, its page has links to alternatives.

Your example

With NAME yanked into the default register, and the cursor on the n, just use gre. gr invokes the command, and e is the motion that covers the entire name to be replaced.

Upvotes: 2

Related Questions