vote up 1 vote down star
1

I know the thread about having folds for LaTex. However, I want folds for C++/Java when I code.

How can you have either automatic or manual folds in Emacs for C++/Java?

flag

6 Answers

vote up 2 vote down check

Make sure you have folding-mode.el. Then, insert

// {{{

// }}}

Around your code. Reload your buffer, and voila! You'll have folds.

link|flag
@Ben: Can you have a folding mode without those signs? – Masi Apr 26 at 20:35
1  
There might be another folding-mode script out there, but this is how you use the most commonly distributed one. Of course, as will anything in Emacs, you can always roll your own. Most of the time when some customization in emacs has a minor irritant (like these superfluous comments) I just "stop worrying and learn to love" it. – Ben Collins Apr 26 at 21:02
I put the folding.el file to my lisp folder which is run at the startup. I start emacs by $ emacs ~/.vimrc. I have comment signs as "{{{ --- "}}}. I do not see any folds. Should I change those fold marks //{{{ --- //}}} ? – Masi Apr 30 at 21:05
I must accept this answer, since it is increases portability between Vim, Emacs and other editors. – Masi Apr 30 at 21:06
The folding delimiters for any particular file depends on the major mode. It's usually paired with a comment symbol for whatever type of file it is. In C, it's /* {{{ */. In C++, it's // {{{, etc. There may be a generic symbol for plain text, but I don't know offhand what it is. – Ben Collins May 1 at 3:03
vote up 7 vote down

hs-minor-mode is what you want.

link|flag
vote up 3 vote down

My customization for hs-minor-mode is as follows

(add-hook 'c-mode-common-hook
  (lambda()
    (local-set-key (kbd "C-c <right>") 'hs-show-block)
    (local-set-key (kbd "C-c <left>")  'hs-hide-block)
    (local-set-key (kbd "C-c <up>")    'hs-hide-all)
    (local-set-key (kbd "C-c <down>")  'hs-show-all)
    (hs-minor-mode t)))
link|flag
I did not get the code to work. I put the code to my .emacs and started Emacs in terminal. I pressed CTRL-C and then arrow key left, but nothing happens. I also tested your code in hs-minor-mode directly by going there first by M-hs-minor-mode. – Masi Apr 27 at 12:09
Can you give me your system, emacs spec? The functions in above code are documented in hideshow.el. They have their own shortcut keys but I have mapped them for convenience. – Amol Gawai Apr 27 at 12:43
@Amol: I use OS X Leopard. – Masi Apr 28 at 1:41
1  
@Masi: I don't have experience on OS X. Please have a look at emacswiki.org/emacs/HideShow and gnufool.blogspot.com/2009/03/… The second link shows hide show working on OS X and has implementation for org-mode like hide show i.e. using tab button to smartely perform various operations including hide show – Amol Gawai Apr 28 at 4:08
1  
Quick check of your .emacs shows strange characters at line 81. Also check Messages buffer after starting emacs to see errors, warnings etc. – Amol Gawai Apr 29 at 5:03
show 1 more comment
vote up 2 vote down

You can use CEDET to do this. This package provides global-semantic-tag-folding-mode, that allows to fold functions, classes/structures, comments, namespaces, etc. It works more properly than other packages, as it has all syntactic information about code.

There is introduction article about CEDET, that allows to quickly start work with it

link|flag
vote up 1 vote down

For Java, use JDEE. For C/C++ see the other answer about CEDET.

link|flag
vote up 1 vote down

You could experiment with selective-display. It's more of a quick folding of all your code according to its indentation level. It's great for getting class/function summaries or for moving around quickly.

But if folding up blocks of code is what you want, then HideShow, like Arkadiy pointed out, is probably more suitable.

link|flag

Your Answer

Get an OpenID
or

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