Last active
August 29, 2015 14:17
-
-
Save camdez/c0f4c53ee847d5d1e2f0 to your computer and use it in GitHub Desktop.
Add new Emacs experiment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun camdez/add-experiment () | |
(interactive) | |
(find-file camdez/experiments-file) | |
(goto-char (point-min)) | |
(re-search-forward ";;; Code:") | |
(insert "\n\n") | |
(camdez/lisp-insert-hr) | |
(insert ";; ") | |
(insert-date-and-time) | |
(insert "\n\n")) | |
(global-set-key (kbd "C-c x") 'camdez/add-experiment) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @willtmonroe, sorry about not getting back to you sooner—I just saw this. You can find the function here. I think it was in my experimental file (of all places...) at the time that you looked for it.