Function: org-roam-dailies-goto-date

org-roam-dailies-goto-date is an autoloaded, interactive and byte-compiled function defined in org-roam-dailies.el.

Signature

(org-roam-dailies-goto-date &optional PREFER-FUTURE KEYS)

Documentation

Find the daily-note for a date using the calendar, creating it if necessary.

Prefer past dates, unless PREFER-FUTURE is non-nil.

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-date (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-date (&optional prefer-future keys)
  "Find the daily-note for a date using the calendar, creating it if necessary.
Prefer past dates, unless PREFER-FUTURE is non-nil.

ELisp programs can set KEYS to a string associated with a template.
In this case, interactive selection will be bypassed."
  (interactive)
  (org-roam-dailies-capture-date t prefer-future keys))