Skip to content

Instantly share code, notes, and snippets.

@lateau
Created March 28, 2013 04:23
Show Gist options
  • Save lateau/5260596 to your computer and use it in GitHub Desktop.
Save lateau/5260596 to your computer and use it in GitHub Desktop.
Copy characters from current point to end of line.
(defun copy-forward-all()
(interactive)
(kill-ring-save (point) (line-end-position))
(message "Yanked!"))
;; (global-set-key (kbd "M-k") 'copy-forward-all)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment