Adicione isso ao final do arquivo ~/.emacs
e reinicie o Emacs. Altere a combinação de teclas para qualquer sequência de teclas à sua escolha:
(defun my-add-end-block-comment ()
"Documentation goes here ..."
(interactive)
(let (start text)
(save-excursion
(backward-sexp 3)
(setq start (point))
(end-of-line)
(setq text (buffer-substring start (point))))
(insert (concat " // " text))))
(global-set-key (kbd "C-z /") 'my-add-end-block-comment)
Posicione o cursor depois da chave de fechamento ( }
) e pressione Cz / . Isso também deve funcionar para while
e for
loops.