What commands in Emacs can I use to insert into the text buffer of a file the current date and time?

(For example, the equivalent in Notepad is simply pressing F5 which is about the only useful feature for Notepad!)

link|improve this question

1  
Ctrl+G in notepad opens the "Goto Line" dialog, that's useful too! – cfeduke Oct 30 '08 at 21:57
i guess only useful to me that is but good to know! – Ray Vega Oct 30 '08 at 21:58
feedback

8 Answers

up vote 35 down vote accepted
C-u M-! date
link|improve this answer
2  
How incredibly intuitive :) – msandiford Sep 24 '10 at 4:16
4  
Just for completeness: M-! is the keyboard shortcut for the function shell-command. So M-! date will call the shell command date, and show it in the output area (the minibuffer, since the output is short enough to fit). The C-u is a prefix argument that makes M-! put its output in the current buffer instead. – ShreevatsaR Sep 26 '11 at 5:09
feedback

Put in your .emacs file:

;; ====================
;; insert date and time

(defvar current-date-time-format "%a %b %d %H:%M:%S %Z %Y"
  "Format of date to insert with `insert-current-date-time' func
See help of `format-time-string' for possible replacements")

(defvar current-time-format "%a %H:%M:%S"
  "Format of date to insert with `insert-current-time' func.
Note the weekly scope of the command's precision.")

(defun insert-current-date-time ()
  "insert the current date and time into current buffer.
Uses `current-date-time-format' for the formatting the date/time."
       (interactive)
       (insert "==========\n")
;       (insert (let () (comment-start)))
       (insert (format-time-string current-date-time-format (current-time)))
       (insert "\n")
       )

(defun insert-current-time ()
  "insert the current time (1-week scope) into the current buffer."
       (interactive)
       (insert (format-time-string current-time-format (current-time)))
       (insert "\n")
       )

(global-set-key "\C-c\C-d" 'insert-current-date-time)
(global-set-key "\C-c\C-t" 'insert-current-time)

Reference

link|improve this answer
I use something alike to this, but I change it from C-c C-t to C-x C-t because C-c C-t gets in the way of org-mode's "Mark TODO item" binding. Which is unfortunatly hardwired into muscle memory for me. :) – AssembledGhost Apr 10 at 8:55
feedback

I've used these short snippets:

(defun now ()
  "Insert string for the current time formatted like '2:34 PM'."
  (interactive)                 ; permit invocation in minibuffer
  (insert (format-time-string "%D %-I:%M %p")))

(defun today ()
  "Insert string for today's date nicely formatted in American style,
e.g. Sunday, September 17, 2000."
  (interactive)                 ; permit invocation in minibuffer
  (insert (format-time-string "%A, %B %e, %Y")))

They originally came from journal.el

link|improve this answer
sweet, does the job nicely :) – kronoz Jan 10 '11 at 13:44
feedback

You can install yasnippet, which will let you type "time" and the tab key, and does a whole lot more besides. It just calls current-time-string behind the scenes, so you can control the formatting using format-time-string.

link|improve this answer
feedback

Here's a package I wrote a while ago that does what you're asking for.

http://github.com/rmm5t/insert-time.el/tree/master/insert-time.el

(require 'insert-time)
(define-key global-map [(control c)(d)] 'insert-date-time)
(define-key global-map [(control c)(control v)(d)] 'insert-personal-time-stamp)
link|improve this answer
feedback

M-1 M-! date

this causes the shell command you run to be inserted into the buffer you are currently editing rather than a new buffer.

link|improve this answer
feedback

Thanks, CMS! My variation, for what it's worth -- makes me happy enough:

(defvar bjk-timestamp-format "%Y-%m-%d %H:%M"
  "Format of date to insert with `bjk-timestamp' function
%Y-%m-%d %H:%M will produce something of the form YYYY-MM-DD HH:MM
Do C-h f on `format-time-string' for more info")


(defun bjk-timestamp ()
  "Insert a timestamp at the current point.
Note no attempt to go to beginning of line and no added carriage return.
Uses `bjk-timestamp-format' for formatting the date/time."
       (interactive)
       (insert (format-time-string bjk-timestamp-format (current-time)))
       )

I put this in a file that is called by my .emacs using:

(load "c:/bjk/elisp/bjk-timestamp.el")

which both makes it easier to modify without risking breaking something else in my .emacs, and allowed me an easy entry point into maybe someday actually learning what this Emacs Lisp programming is all about.

P.S. Critiques regarding my n00b technique most welcome.

link|improve this answer
feedback

For an answer similar to ones already posted, along with explanations and more extensions such as automatically opening a file and inserting the current date at the end of it (like a journal), check out Paul Ford's discussion of his emacs utilities.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.