Created
July 27, 2016 15:23
-
-
Save offby1/80af5fa73b6bf111886e11103015e1dc 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
(progn | |
(require 'org) | |
(defun timestamp () | |
"Convenience wrapper around \\[org-time-stamp]" | |
(interactive) | |
(let ((org-time-stamp-formats (cons "%FT%T%z" "%FT%T%z"))) | |
(org-time-stamp '(16)) | |
(insert " "))) | |
(local-set-key (kbd "C-c C-c") 'timestamp)) | |
2016-06-13T21:16:52+0000 twiddling the frobs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment