vote up 3 vote down star
2

I've read this question, but I want to know how can I delete the line when the pattern DOESN'T occur.

flag

3 Answers

vote up 11 vote down check

Deleting the rest of the line when a pattern does not occur is ... hard for me to understand.

Did you mean, delete the whole line if it doesn't have a pattern?

:v/pattern/d

If you meant, preserve the line but clobber the characters:

:v/pattern/s/.*//
link|flag
:v/pattern/d Just work fine. Thanks :) – lk Oct 28 at 18:06
And yes, I mean delete the whole line – lk Oct 28 at 18:06
vote up 2 vote down

Equivalently:

:g!/pattern/d

Easier to remember in my opinion, because! is ingrained as "not" in my brain.

link|flag
vote up 1 vote down
:v/pattern/s/.*//
link|flag

Your Answer

Get an OpenID
or

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