Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

vim

vi

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.?

like image 744
OJFord Avatar asked Jul 30 '14 12:07

OJFord


2 Answers

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

viwp

or golf abit: vep

like image 127
Kent Avatar answered Oct 20 '22 06:10

Kent


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.

like image 2
Ingo Karkat Avatar answered Oct 20 '22 07:10

Ingo Karkat