Sunday, October 08, 2017

[bvbbxjiv] insert-date

Some Emacs Lisp to insert the current date into the buffer:

(defun insert-date ()
  (interactive)
  (call-process "date" nil t nil)
  )

No comments :