Function: org-roam-dailies-capture-tomorrow
org-roam-dailies-capture-tomorrow is an autoloaded, interactive and
byte-compiled function defined in org-roam-dailies.el.
Signature
(org-roam-dailies-capture-tomorrow N &optional GOTO KEYS)
Documentation
Create an entry in the daily-note for tomorrow.
With numeric argument N, use the daily-note N days in the future.
With a C-u prefix or when GOTO is non-nil, go the note without
creating an entry.
ELisp programs can set KEYS to a string associated with a template. In this case, interactive selection will be bypassed.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-dailies.el
;;;; Tomorrow
;;;###autoload
(defun org-roam-dailies-capture-tomorrow (n &optional goto keys)
"Create an entry in the daily-note for tomorrow.
With numeric argument N, use the daily-note N days in the future.
With a `C-u' prefix or when GOTO is non-nil, go the note without
creating an entry.
ELisp programs can set KEYS to a string associated with a template.
In this case, interactive selection will be bypassed."
(interactive "p")
(org-roam-dailies--capture (time-add (* n 86400) (current-time)) goto keys))