Guest User

Untitled

a guest
Oct 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. (defun comment-or-uncomment-line-at-point ()
  2. (interactive)
  3. (push-mark-command (point) t)
  4. (comment-or-uncomment-region (line-beginning-position) (line-end-position))
  5. (pop-to-mark-command))
  6.  
  7. (global-set-key (kbd "M-[") 'comment-or-uncomment-line-at-point)
Add Comment
Please, Sign In to add comment