There are several questions on SO about how to get code folding in emacs, without having to add any special characters like "markers" in the comments for example. Someone said that there was "no perfect solution."
It seems that it could be done by parsing the source of the program being written and look for matching parenthesis or bracket, or to do it based on indentation. You could also use a combination of scripts that use different methods.
So why is it commonly accepted that there is no "perfect" and straightforward way to get code-folding in emac? Is there something in emacs or its architecture that makes it hard to program? If it were easy, after so many years of smart people using emacs you would think that someone would have wrote it.
|
|
|||||||||||||||||
|
|
You should play with Hideshow ( There's a robust folding solution out there for most common languages, and if there isn't, all the folding packages are highly customizable. In fact, the only downside is the proliferation of folding methods ( I have used
|
|||||
|
|
You should look into CEDET. It does code-folding just fine, and many other fancy features that you're probably looking for if you're switching from an IDE to Emacs. Specifically, look for `global-semantic-tag-folding-mode' |
|||
|
|
|
You don't need anything extra, just enable outline-minor-mode for file types you want to fold. |
|||||||
|
|
I have been using folding-mode for quite some time. With auto-insert template and abrevs it works quite well for me for for some nice bricks of code. Being able to produce the buffer folded (for printing/emailing) has always been a desire of mine. Some of my folding tags are for secure / password hiding. |
|||
|
|
|
But in fact, there ARE various soulutions for Emacs; I have listed some of them (thos I have come across) at http://en.wikipedia.org/w/index.php?title=Code_folding&oldid=375300945#cite_note-2 . |
|||
|
