Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am editing line number N in a text file open in vim. I would like to find all occurrences of either patter P or pattern Q if and only if they appear in line numbers in the inclusive range [N-K, N+K], with K being the value of a defined variable. Is such a thing possible at all? It would be the basic of a much needed script...

share|improve this question

1 Answer

up vote 2 down vote accepted
:-5,+5g/P\|Q

shows all the lines containing P or Q between 5 lines above the current line and 5 lines below.

See :help search() if you want to do that into a script.

See :help range for more info on ranges.

share|improve this answer
Thanks! If I wanted either P or Q, would that still be possible? – Robottinosino Oct 5 '12 at 12:22
1  
I've modified my answer. You may find this page useful. – romainl Oct 5 '12 at 12:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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