How to use VI to search for lines less than a certain length? -


i know how use vi find lines longer number of characters:

/\%>80v.\+ 

but how search lines shorter number of characters?

use

/^.\{,25}$/ 

to find lines shorter 25 characters.


Comments

Popular posts from this blog

Cursor error with postgresql, pgpool and php -

delphi - ESC/P programming! -

c++ - error: use of deleted function -