vote up 2 vote down star

How do calculate the number from inside the vim?

flag

2 Answers

vote up 9 vote down check

For counting the number of times some pattern occurs, use:

:%s/pattern//gn
link|flag
2  
+1 see :help count-items : An alternative is using |v_g_CTRL-G| in Visual mode. – Vereb Oct 23 at 14:31
I generally still use & for the replacement (:%s/pattern/&/gn); this way if you forget the "n", you still don't affect your file (yes, I know you can just undo it). – Jefromi Oct 23 at 14:36
vote up 2 vote down

The following will work with unmodifiable files, and the result can be kept and used elsewhere in our scripts.

:let g:n = 0
:g/pattern/let g:n += 1
:echo g:n
link|flag

Your Answer

Get an OpenID
or

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