La respuesta de @ Malabarba parece la solución más simple y elegante. Sin embargo, si hace esto lo suficiente como para garantizar su propia función, también puede adaptarse comment-kill
para eliminar sin modificar el anillo de matar. Aquí está el código fuente de
comment-kill
con el cambio de una sola línea para definir comment-delete
:
(defun comment-delete (arg)
"Delete the first comment on this line, if any. Don't touch
the kill ring. With prefix ARG, delete comments on that many
lines starting with this one."
(interactive "P")
(comment-normalize-vars)
(dotimes (_i (prefix-numeric-value arg))
(save-excursion
(beginning-of-line)
(let ((cs (comment-search-forward (line-end-position) t)))
(when cs
(goto-char cs)
(skip-syntax-backward " ")
(setq cs (point))
(comment-forward)
;; (kill-region cs (if (bolp) (1- (point)) (point))) ; original
(delete-region cs (if (bolp) (1- (point)) (point))) ; replace kill-region with delete-region
(indent-according-to-mode))))
(if arg (forward-line 1))))
Y aquí hay una función (NB: mínimamente probada) que proporciona alguna funcionalidad adicional, que le permite eliminar comentarios en la línea actual, en la región activa o en todo el búfer:
(defun comment-delete-dwim (beg end arg)
"Delete comments without touching the kill ring. With active
region, delete comments in region. With prefix, delete comments
in whole buffer. With neither, delete comments on current line."
(interactive "r\nP")
(let ((lines (cond (arg
(count-lines (point-min) (point-max)))
((region-active-p)
(count-lines beg end)))))
(save-excursion
(when lines
(goto-char (if arg (point-min) beg)))
(comment-delete (or lines 1)))))
No he verificado problemas de rendimiento, pero tal vez hay un pequeño golpe por no tocar el anillo de matar. De todos modos, dudo que note problemas de rendimiento a menos que esté trabajando con un búfer verdaderamente masivo. Pero como es poco probable que use esta función con mucha frecuencia, parece que no valdría la pena trabajar en la optimización.
M-x flush-lines ^\s-*\/\/
o algo por el estilo. No es perfecto, pero podría funcionar algunas veces.