Skip to content

Instantly share code, notes, and snippets.

@ganmacs
Created June 10, 2014 13:07
Show Gist options
  • Save ganmacs/fa28a3142b2ae7df8fa6 to your computer and use it in GitHub Desktop.
Save ganmacs/fa28a3142b2ae7df8fa6 to your computer and use it in GitHub Desktop.
emacsで1行コメント
(defun one-line-comment ()
(interactive)
(save-excursion
(beginning-of-line)
(set-mark (point))
(end-of-line)
(comment-or-uncomment-region (region-beginning) (region-end))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment