I'm using
(setq-default comment-style 'multi-line)
and my region comments, when doing M-;, are:
/* void main()
* {
* int i;
* int b;
* printf("format string");
* } */
But I want them to look like this:
/*
* void main()
* {
* int i;
* int b;
* printf("format string");
* }
*/
What do I have to change?
Try with:
(setq comment-style 'extra-line)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With