Skip to content

Instantly share code, notes, and snippets.

@offby1
Created July 27, 2016 15:23
Show Gist options
  • Save offby1/80af5fa73b6bf111886e11103015e1dc to your computer and use it in GitHub Desktop.
Save offby1/80af5fa73b6bf111886e11103015e1dc to your computer and use it in GitHub Desktop.
(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