How do I search for a pattern repeated an exact number of times in Vim?
/pattern\{3}
Vim supports counted quantifiers that let you specify exactly how many times a pattern should repeat.
/pattern\{3}
Vim supports counted quantifiers that let you specify exactly how many times a pattern should repeat.