How do I specify “the word under the cursor” on VIM's commandline?

前端 未结 8 964
后悔当初
后悔当初 2021-01-30 02:14

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

8条回答
  •  不思量自难忘°
    2021-01-30 02:45

    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 , in this case the substitution.

    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 @:

提交回复
热议问题