Function: org-roam-dailies-goto-tomorrow
org-roam-dailies-goto-tomorrow is an autoloaded, interactive and
byte-compiled function defined in org-roam-dailies.el.
Signature
(org-roam-dailies-goto-tomorrow N &optional KEYS)
Documentation
Find the daily-note for tomorrow, creating it if necessary.
With numeric argument N, use the daily-note N days in the future.
ELisp programs can set KEYS to a string associated with a template. In this case, interactive selection will be bypassed.
Key Bindings
Aliases
org-roam-dailies-find-tomorrow (obsolete since org-roam 2.0)
Source Code
;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-dailies.el
;;;###autoload
(defun org-roam-dailies-goto-tomorrow (n &optional keys)
"Find the daily-note for tomorrow, creating it if necessary.
With numeric argument N, use the daily-note N days in the
future.
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-tomorrow n t keys))