Skip to content

Instantly share code, notes, and snippets.

View vbuaraujo's full-sized avatar

Vítor De Araújo vbuaraujo

View GitHub Profile
@vbuaraujo
vbuaraujo / block-comments.el
Last active March 15, 2018 15:37 — forked from anonymous/block-comments.el
Auto-insert " * " in block comments in Emacs
(defun elmord-block-comment-auto-prefix ()
(when (eq last-command-event ?\n)
(let* ((last-comment-start
(save-excursion (search-backward "/*" nil t)))
(last-comment-end
(save-excursion (search-backward "*/" last-comment-start t))))
(when (and last-comment-start (not last-comment-end))
(insert "* ")
(indent-for-tab-command)))))