How do I search for long lines?
You can search for long lines or lines containing more than a specific number of characters using the Vim regular-expressions in the search command. For example, to search for all the lines containing more than 80 characters, you can use one of the following commands:
/^.\{80}.\+$
/^.*\%>80c.*$
/^.*\%>80v.*$
Read free Software Algorithms and Computer Science Books by CodeAhoy Learn.
Introduction to Recursion and Backtracking