Далі наведено приклад того, як вивчити текстові властивості елементів, що створюються org-agenda-list
, та змінити рядок на основі певних критеріїв. У цьому прикладі ts-date
отримують значення властивості тексту та порівнюють із поточною датою - якщо вона прострочена, додамо OLD:
; якщо він поточний, ми додаємо CURRENT:
, якщо його майбутнє, ми додаємо FUTURE:
. Оригінальний плакат може налаштувати цей приклад, додати новий рядок та / або лінію розділення у вибраних місцях. Настроювання може змінюватись залежно від критеріїв сортування, обраних оригінальним плакатом у org-agenda-sorting-strategy
тощо.
У цьому прикладі функція org-agenda-finalize-entries
була модифікована внизу між розділами, позначеними ;; BEGIN modification
і ;; END modification
.
(require 'org-agenda)
(defun org-agenda-finalize-entries (list &optional type)
"Sort, limit and concatenate the LIST of agenda items.
The optional argument TYPE tells the agenda type."
(let ((max-effort (cond ((listp org-agenda-max-effort)
(cdr (assoc type org-agenda-max-effort)))
(t org-agenda-max-effort)))
(max-todo (cond ((listp org-agenda-max-todos)
(cdr (assoc type org-agenda-max-todos)))
(t org-agenda-max-todos)))
(max-tags (cond ((listp org-agenda-max-tags)
(cdr (assoc type org-agenda-max-tags)))
(t org-agenda-max-tags)))
(max-entries (cond ((listp org-agenda-max-entries)
(cdr (assoc type org-agenda-max-entries)))
(t org-agenda-max-entries))) l)
(when org-agenda-before-sorting-filter-function
(setq list
(delq nil
(mapcar
org-agenda-before-sorting-filter-function list))))
(setq list (mapcar 'org-agenda-highlight-todo list)
list (mapcar 'identity (sort list 'org-entries-lessp)))
(when max-effort
(setq list (org-agenda-limit-entries
list 'effort-minutes max-effort 'identity)))
(when max-todo
(setq list (org-agenda-limit-entries list 'todo-state max-todo)))
(when max-tags
(setq list (org-agenda-limit-entries list 'tags max-tags)))
(when max-entries
(setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
;; BEGIN modification
(setq list
(mapcar
(lambda (string)
(let* (
(current-date (time-to-days (current-time)))
(ts-date (get-text-property 0 'ts-date string)) )
(if ts-date
(cond
((< ts-date current-date)
(message "The task dated %s is overdue." ts-date)
;; The new value of `string' is returned/thrown as a result.
(replace-regexp-in-string "^" "OLD: " string))
((= ts-date current-date)
(message "The task dated %s is due today." ts-date)
;; The new value of `string' is returned/thrown as a result.
(replace-regexp-in-string "^" "CURRENT: " string))
((> ts-date current-date)
(message "The task dated %s is not due yet." ts-date)
;; The new value of `string' is returned/thrown as a result.
(replace-regexp-in-string "^" "FUTURE: " string)))
string)))
list))
;; END modification
(mapconcat 'identity list "\n")))
replace-regexp-in-string
(додати розділові лінії і / або символи нового рядка як ти хочеш); ви можете матиstring-equals
або відповідати певним критеріям або будь-яким іншим критеріям, які ви шукаєте. Вивчіть наявні властивості тексту зі значеннями, щоб ознайомитись із тим, що включено поза вікном, а потім скористайтеся ними.