vote up 5 vote down star

In order to know how many times a pattern exists in current buffer, I do:

:%s/pattern-here/pattern-here/g

It gives the number of occurrences of the pattern, but is obviously cumbersome and also has the side-effect of setting the 'changed' status.

Is there a more elegant way to count?

flag

80% accept rate

3 Answers

vote up 4 vote down check

Add the 'n' flag to avoid the substitution.

This is described as an official tip.

link|flag
even more cumbersome, but at least it is now official that there is no elegant way... – Paul Oyster Sep 16 '08 at 9:22
2  
If you've already performed a search using /, it becomes just :%s///gn – Peter Gibson Jun 18 at 2:50
vote up 2 vote down

:!cat %| grep -c "pattern"

It's not exactly vim command, but it will give you what you need from vim.
You can map it to the command if you need to use it frequently.

link|flag
vote up 0 vote down

This vimscript displays search with "At match #N out of M matches".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.