Function: denote-rename-file-date
denote-rename-file-date is an interactive and byte-compiled function
defined in denote.el.
Signature
(denote-rename-file-date)
Documentation
Convenience command to change the date of a file.
Like denote-rename-file, but prompts only for the date.
Modify a date in one go.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/denote-4.2.3/denote.el
(defun denote-rename-file-date ()
"Convenience command to change the date of a file.
Like `denote-rename-file', but prompts only for the date.
Modify a date in one go."
(declare (interactive-only t))
(interactive)
(let ((denote-prompts '(date)))
(call-interactively #'denote-rename-file)))