What's the correct method for defining multi-line comments in an emacs mode (like C's /* */)? The elisp examples I see are for comments that start with a single delimiter and end at the end of the line (like C++'s // or perl's #).
|
|
Tom's answer covers creating comments; if you want your mode to be aware of comments, you need to fixup the syntax table. Relevant reading: http://www.gnu.org/software/emacs/elisp/html_node/Syntax-Tables.html#Syntax-Tables |
||
|
|
|
|
It's like this:
But there are subtleties; maybe you want
or maybe you want
This is affected by your It's all defined in |
|||
|
|
