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!)
|
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!)
| |||||||
feedback
|
| |||||||||
feedback
|
|
Put in your .emacs file:
| |||
feedback
|
|
I've used these short snippets:
They originally came from journal.el | |||
|
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 | |||
|
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
| ||||
|
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. | |||
|
feedback
|
|
Thanks, CMS! My variation, for what it's worth -- makes me happy enough:
I put this in a file that is called by my .emacs using:
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. | ||||
|
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. | |||
|
feedback
|