I want to write a command that specifies \"the word under the cursor\" in VIM. For instance, let\'s say I have the cursor on a word and I make it appear twice. For instance, i
Another easy way to do this is to use the *
command.
In regular mode, when over a word, type
*:s//\0\0
*
makes the search pattern the current word (e.g. \
:s//
does a substitution using the current search pattern, and \0
in the replacement
section is the matched string.
You can then repeat this behaviour, say over word "def", by either typing the same again, or by typing
*@:
@:
just repeats the last ex command, without a need for an
You can also record a quick macro to do this using the q
command
qd*:s//\0\0q
Then repeat it to your hearts content by typing
@d
when over a word you want to double. As this is only one character less than the prior solution, it may not be worth it to you - unless you will be doing other ex-commands between the word-doubling, which would change the behaviour of @: