emacs 中是否有命令取消注释整个注释块而不必先标记它?
例如,假设要点在以下代码的注释中:
(setq doing-this t)
;; (progn |<--This is the point
;; (er/expand-region 1)
;; (uncomment-region (region-beginning) (region-end)))
我想要一个命令把它变成这样:
(setq doing-this t)
(progn
(er/expand-region 1)
(uncomment-region (region-beginning) (region-end)))
编写一个(取消)注释一行的命令相当容易,但我还没有找到一个尽可能多地取消注释的命令。有没有可用的?