I would like to list the matches, when I hit:
/example
so that I see where all matches are at once.
|
2
|
|
|
|
|
|
:g//p In it's longer form: :global/regular-expression/print You can leave out the pattern/regex and Vim will re-use the previous search term. Trivia: The grep tool was named after this command sequence. |
||
|
|
|
|
if you want to look at this list and jump quickly between the matches, consider using
or
This will populate the "error list" with all of the matches so that you can use for a thorough explanation, see my reply to a similar question |
||
|
|
|
|
You can also do a :
that will print the pattern you want and the number of the line. |
||
|
|
|
|
To elaborate on this ... instead of
you can also write directly
or, as p(rint) is the default action for the :g(lobal) command, this can be shortened to
And instead of p(rint), other actions are possible, e.g. d(elete). See :help :global |
||
|
|
|
|
Setting |
|||
|