pkg update and first config fix

org-brain not working, add org-roam
This commit is contained in:
2022-12-19 23:02:34 +01:00
parent 02b3e07185
commit 82f05baffe
885 changed files with 356098 additions and 36993 deletions

View File

@@ -282,6 +282,9 @@ The expiry process will run the function defined by
processed expired))))))
;;; Insert created/expiry property:
(defun org-expiry-format-timestamp (timestr inactive)
"Properly format TIMESTR into an org (in)active timestamp"
(format (if inactive "[%s]" "<%s>") timestr))
(defun org-expiry-insert-created (&optional arg)
"Insert or update a property with the creation date.
@@ -299,10 +302,13 @@ update the date."
(setq d-hour (format-time-string "%H:%M" d-time))
(setq timestr
;; two C-u prefixes will call org-read-date
(if (equal arg '(16))
(concat "<" (org-read-date
nil nil nil nil d-time d-hour) ">")
(format-time-string (cdr org-time-stamp-formats))))
(concat "<"
(if (equal arg '(16))
(org-read-date nil nil nil nil d-time d-hour)
(format-time-string
(replace-regexp-in-string "\\(^<\\|>$\\)" ""
(cdr org-time-stamp-formats))))
">"))
;; maybe transform to inactive timestamp
(if org-expiry-inactive-timestamps
(setq timestr (concat "[" (substring timestr 1 -1) "]")))
@@ -320,10 +326,13 @@ and insert today's date."
(setq d-time (if d (org-time-string-to-time d)
(current-time)))
(setq d-hour (format-time-string "%H:%M" d-time))
(setq timestr (if today
(format-time-string (cdr org-time-stamp-formats))
(concat "<" (org-read-date
nil nil nil nil d-time d-hour) ">")))
(setq timestr (concat "<"
(if today
(format-time-string
(replace-regexp-in-string "\\(^<\\|>$\\)" ""
(cdr org-time-stamp-formats)))
(org-read-date nil nil nil nil d-time d-hour))
">"))
;; maybe transform to inactive timestamp
(if org-expiry-inactive-timestamps
(setq timestr (concat "[" (substring timestr 1 -1) "]")))