Created
November 9, 2020 16:35
-
-
Save antoineMoPa/a084b68b3fde985f1a53cf1af29ceedc to your computer and use it in GitHub Desktop.
This file contains hidden or 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 newentry () | |
| "New log entry" | |
| (interactive) | |
| (search-forward "#now#") | |
| (beginning-of-line) | |
| (insert "\n\n") | |
| (insert (shell-command-to-string "date")) | |
| (dotimes (i 50) (insert "=")) | |
| (insert "\n") | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment