vote up 2 vote down star
2

Is it possible to show/hide all matching lines in vi or vim? Not highlight but just show only that lines.

For example I have a text with ERROR word. How to show only lines containing ERROR and how to show only lines without ERROR ?

Is there a solution without deleting all matching lines and than just undoing this?

flag

2 Answers

vote up 8 vote down check

Do you know about the :global command? Does this do what you want?

:g/ERROR

and for the opposite

:g!/Error
or equivalent
:v/Error
link|flag
vote up 6 vote down

You can use

:g/ERROR/

to print all the lines with ERROR

Also there is a Vim plugin which I saw many times but didn't use: foldsearch : fold away lines that don't match a given pattern

link|flag
+1 for the link to the foldsearch plugin. It's unobtrusive and can come in handy. – blixtor May 14 at 13:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.