Is there a shortcut in Vim for going to the next word which is the same as the word cursor is on? It should work without typing the word with search command /.
|
|
||||
|
|
|
* goes to the next matching word and # goes to the previous matching word. * is so useful it's sometimes called the super star. |
||||
|
|
|
To search the current word under the cursor use '*'. to search backwards for current cursor word use '#' |
|||
|
|
|
While all the answers here are correct, I thought it may be useful to provide a little more info. What The |
|||
|
|
|
gd and its variants are also very handy. It works slightly differently from *, in that it searches for the local declaration of the word under the cursor (or global declaration if none local exists). You can then search through the results with n like you can with superstar, and it will skip comments. It can be helpful when you're editing code.
|
|||
|
|

