Skip to content

Instantly share code, notes, and snippets.

@b4284
Created January 19, 2016 11:37
Show Gist options
  • Select an option

  • Save b4284/403ff42ede3360a20b4a to your computer and use it in GitHub Desktop.

Select an option

Save b4284/403ff42ede3360a20b4a to your computer and use it in GitHub Desktop.
;; This buffer is for notes you don't want to save, and for Lisp evaluation.
;; If you want to create a file, visit that file with C-x C-f,
;; then enter the text in that file's own buffer.
(defun comment-toggle-current-line ()
"comment or uncomment current line"
(interactive)
(comment-or-uncomment-region (line-beginning-position) (line-end-position)))
(global-set-key (kbd "M-[") 'comment-toggle-current-line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment