Skip to content

Instantly share code, notes, and snippets.

@jaycfields
Created November 3, 2012 17:33
Show Gist options
  • Save jaycfields/4008052 to your computer and use it in GitHub Desktop.
Save jaycfields/4008052 to your computer and use it in GitHub Desktop.
(defun duplicate-line ()
(interactive)
(let* ((cursor-column (current-column)))
(move-beginning-of-line 1)
(kill-line)
(yank)
(open-line 1)
(next-line 1)
(yank)
(move-to-column cursor-column)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment