vim count match

No se puede contar el número de coincidencias en Vim



count match (3)

¿Cómo se puede contar la cantidad de partidos en Vim?

Por ejemplo, para el texto

<?


Count-items describe lo que buscas.

:%s/<?/whatever/ng

Este es el comando de sustitución, pero el indicador n evita la sustitución real.


:%s/<?//ng

Ver :h count-items .


:help count-items

En VIM 6.3, así es como lo harías:

:set report=0 :%s/<?/&/g # returns the count without substitution

En VIM 7.2, así es como lo harías:

:%s/<?/&/gn # returns the count without substitution