vote up 3 vote down star

I work in a Unix environment with the typical Unix tools (emacs, vim, gvim, sunstudio, etc)

My project has huge gross boilerplate comments on every method. It makes the files thousands of lines long, with a couple hundred lines of actual code. I may be exagerrating a bit but you get the idea. I am looking for a way when viewing these files to hide (not remove) all comments so I can quickly go through the code. C++ comments '//' only.

flag

57% accept rate

2 Answers

vote up 7 vote down check

It all depends on which editor you use. In vim, you can enable folding with :

set foldenable

Then, you'll be able to use different of folding methods, for mainstream languages, you can set :

set foldmethod=syntax

which will enable syntax folding.

There are half a dozen folding methods, I think the best would be to read

help folding

which should answer everything.

link|flag
vote up -1 vote down

http://en.wikipedia.org/wiki/Sed

link|flag

Your Answer

Get an OpenID
or

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