Function: org-mouse-timestamp-today
org-mouse-timestamp-today is an interactive and byte-compiled function
defined in org-mouse.el.gz.
Signature
(org-mouse-timestamp-today &optional SHIFT UNITS)
Documentation
Change the timestamp into SHIFT UNITS in the future.
For the acceptable UNITS, see org-timestamp-change.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-mouse.el.gz
(defun org-mouse-timestamp-today (&optional shift units)
"Change the timestamp into SHIFT UNITS in the future.
For the acceptable UNITS, see `org-timestamp-change'."
(interactive)
(org-time-stamp nil)
(when shift (org-timestamp-change shift units)))