mirror of
https://github.com/org-roam/org-roam
synced 2025-09-18 16:06:49 -05:00
Add org-roam-tomorrow and org-roam-date
Similar to `org-roam-today`: - `org-roam-tomorrow`: Add file for tomorrow - `org-roam-date`: Add file for any date (choose via date picker)
This commit is contained in:
10
org-roam.el
10
org-roam.el
@@ -228,6 +228,16 @@ If called interactively, then PARENTS is non-nil."
|
|||||||
(interactive)
|
(interactive)
|
||||||
(org-roam--new-file-named (format-time-string "%Y-%m-%d" (current-time))))
|
(org-roam--new-file-named (format-time-string "%Y-%m-%d" (current-time))))
|
||||||
|
|
||||||
|
(defun org-roam-tomorrow ()
|
||||||
|
"Create the file for tomorrow."
|
||||||
|
(interactive)
|
||||||
|
(org-roam--new-file-named (format-time-string "%Y-%m-%d" (time-add 86400 (current-time)))))
|
||||||
|
|
||||||
|
(defun org-roam-date ()
|
||||||
|
"Create the file for any date using the calendar."
|
||||||
|
(interactive)
|
||||||
|
(let ((time (org-read-date nil 'to-time nil "Date: ")))
|
||||||
|
(org-roam--new-file-named (format-time-string "%Y-%m-%d" time))))
|
||||||
|
|
||||||
;;; Org-roam buffer updates
|
;;; Org-roam buffer updates
|
||||||
(defun org-global-props (&optional property buffer)
|
(defun org-global-props (&optional property buffer)
|
||||||
|
Reference in New Issue
Block a user