Vimの一致数をどのように数えることができますか?
たとえば、テキストの場合
<?
:%s/<?//ng
を参照してください:h count-items
。
:help count-items
VIM 6.3 では、次のようにします。
:set report=0
:%s/<?/&/g # returns the count without substitution
VIM 7.2 では、次のようにします。
:%s/<?/&/gn # returns the count without substitution