Insert date string (dot emacs)
Need to add a common date string in your source code?
Add it to your .emacs!
;; Insert date string
(defun insert-date-string ()
"Insert a nicely formated date string."
(interactive)
(insert (format-time-string "%a %b %d %H:%M:%S %Y")))
Posted on September 14, 2008, in GNU Emacs and tagged dot emacs, emacs, gnu. Bookmark the permalink. Leave a comment.
Leave a comment
Comments 0