Function: org-roam-dailies-goto-previous-note

org-roam-dailies-goto-previous-note is an interactive and byte-compiled function defined in org-roam-dailies.el.

Signature

(org-roam-dailies-goto-previous-note &optional N)

Documentation

Find previous daily-note.

With numeric argument N, find note N days in the past. If N is negative, find note N days in the future.

Key Bindings

Aliases

org-roam-dailies-find-previous-note (obsolete since org-roam 2.0)

Source Code

;; Defined in ~/.emacs.d/elpa/org-roam-20260224.1637/org-roam-dailies.el
(defun org-roam-dailies-goto-previous-note (&optional n)
  "Find previous daily-note.

With numeric argument N, find note N days in the past. If N is
negative, find note N days in the future."
  (interactive "p")
  (let ((n (if n (- n) -1)))
    (org-roam-dailies-goto-next-note n)))