Guest User

Untitled

a guest
Feb 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. ;; 選択範囲をコメントアウト&その後ろにコメントアウトした物をペースト
  2. (defun comment-out-and-paste ()
  3. (interactive)
  4. (save-excursion
  5. (kill-ring-save (region-beginning) (region-end))
  6. (comment-region (region-beginning) (region-end))
  7. (goto-char (region-end))
  8. (insert "\n\n")
  9. (yank)
  10. ))
Add Comment
Please, Sign In to add comment