El siguiente código funciona bien desde mi breve prueba en un c-mode
búfer:
- Después de escribir
/*
, presione M-j
, el enlace predeterminado para indent-new-comment-line
(y el enlace predeterminado para c-indent-new-comment-line
in c-mode
). Si es la primera línea de comentario, los caracteres de cierre de cierre */
se insertarán automáticamente.
- Golpear
M-j
más veces con insertar más líneas de comentario con el *
prefijo. Este es el comportamiento incorporado de c-indent-new-comment-line
/ indent-new-comment-line
funciones. Consulte la documentación de Múltiples líneas de comentarios .
- Un nugget adicional en el siguiente código asegura que haya al menos un espacio entre
*
cada línea de comentario y el comentario.
(defun my-prettify-c-block-comment (orig-fun &rest args)
(let* ((first-comment-line (looking-back "/\\*\\s-*.*"))
(star-col-num (when first-comment-line
(save-excursion
(re-search-backward "/\\*")
(1+ (current-column))))))
(apply orig-fun args)
(when first-comment-line
(save-excursion
(newline)
(dotimes (cnt star-col-num)
(insert " "))
(move-to-column star-col-num)
(insert "*/"))
(move-to-column star-col-num) ; comment this line if using bsd style
(insert "*") ; comment this line if using bsd style
))
;; Ensure one space between the asterisk and the comment
(when (not (looking-back " "))
(insert " ")))
(advice-add 'c-indent-new-comment-line :around #'my-prettify-c-block-comment)
;; (advice-remove 'c-indent-new-comment-line #'my-prettify-c-block-comment)
Por ejemplo, después de evaluar el código anterior, me sale el siguiente en la tipificación: /*
M-j
First comment line
M-j
Second comment line
. La ▮ indica la ubicación del cursor al final de la escritura.
/*
* First comment line
* Second comment line▮
*/
Prueba del bloque de comentarios de compensación ...
Con el cursor después del punto y coma, escribiendo: /*
M-j
Test offset comment
da lo siguiente. La ▮ indica la ubicación del cursor al final de la escritura.
#include<stdio.h>
main() {
printf("Hello World"); /*
* Test offset comment▮
*/
}