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

2019-04-29 01:55发布

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

标签: vim vi
4条回答
够拽才男人
2楼-- · 2019-04-29 02:46

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.

查看更多
Lonely孤独者°
3楼-- · 2019-04-29 02:47

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

viwp

or golf abit: vep

查看更多
4楼-- · 2019-04-29 02:49

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.

查看更多
闹够了就滚
5楼-- · 2019-04-29 02:56

You could simply change the case of name with gUiw.

查看更多
登录 后发表回答