Function: org-roam-dailies-capture-today

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

Signature

(org-roam-dailies-capture-today &optional GOTO KEYS)

Documentation

Create an entry in the daily-note for today.

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
;;; Commands
;;;; Today
;;;###autoload
(defun org-roam-dailies-capture-today (&optional goto keys)
  "Create an entry in the daily-note for today.
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 (current-time) goto keys))