We need to comment on our C ++ code using javadoc formatted doxygen comments, and I'm looking for something in emacs that can support the javadoc style as you type.
So, if I start writing a comment as follows:
/**
* This function does the following:
When I press enter, I would like the cursor to be automatically indented and insert "*", so I can continue to type without formatting manually. Therefore, when I press "return", the comment should now look like this (without me type "[TAB] *"):
/**
* This function does the following:
*
source
share