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

I have to read a few giant Perl scripts, and I would like to know how do you guys add the "minimizing" brackets functionality in Vim as GUI text editors do. I'm having a tough time understanding the code because of this, If I could just minimize those giant if, functions, etc... my mind would be very grateful.

share|improve this question

1 Answer

up vote 7 down vote accepted

By minimizing, I suppose you are referring to code "folding"

:help fold

zC closes all folds recursively under the cursor, zc closes a single fold. zo opens a single fold under the cursor, while zR recursively opens all folds.

See also

:help :foldmethod

For Perl, you will want :set foldmethod=syntax.

share|improve this answer
"folding" i bet that's the word, had a tough time figuring it out. – Jorge Sanchez Aug 3 '12 at 20:38
It's exactly the same name in every text editor/IDE. – romainl Aug 3 '12 at 21:48

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.