I am trying to document certain sections of my code using Doxygen. I want to use the javadoc style of comments viz

 /**
  *  My Documentation goes here
  */

Now in Emacs I can comment out a certain block of text by selecting it and by pressing Meta+;. This comments out the lines by placing a // in front of all the lines selected.

Since most of the time I will be writing comments in my code which will be documented using Doxygen, I want to rebind the Meta+; to give me a javadoc style of comments.

How do I do that?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Use doxymacs. You'll have to rebind keys to your taste, but the bindings it comes with are pretty good.

link|improve this answer
Exactly what I was looking for! Thanks! – smilingbuddha Dec 30 '11 at 16:48
feedback

Code is not documentation. Wouldn't you want to use javadoc style comments only for documentation?

It sounds like you actually want a snippet/skeleton system to insert a java-doc template that you can flesh out. If so I recommend yasnippet.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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