Created
June 10, 2014 13:07
-
-
Save ganmacs/fa28a3142b2ae7df8fa6 to your computer and use it in GitHub Desktop.
emacsで1行コメント
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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