|
@@ -945,6 +945,10 @@ When non-nil, this must be the number of minutes, e.g. 60 for one hour."
|
|
|
(integer :tag "Minutes")
|
|
|
(const :tag "No default duration")))
|
|
|
|
|
|
+(defcustom org-agenda-show-inherited-tags t
|
|
|
+ "Non-nil means, show inherited tags in each agenda line."
|
|
|
+ :group 'org-agenda-line-format
|
|
|
+ :type 'boolean)
|
|
|
|
|
|
(defcustom org-agenda-remove-tags nil
|
|
|
"Non-nil means, remove the tags from the headline copy in the agenda.
|
|
@@ -3737,6 +3741,9 @@ Any match of REMOVE-RE will be removed from TXT."
|
|
|
(save-match-data
|
|
|
;; Diary entries sometimes have extra whitespace at the beginning
|
|
|
(if (string-match "^ +" txt) (setq txt (replace-match "" nil nil txt)))
|
|
|
+ (when org-agenda-show-inherited-tags
|
|
|
+ ;; Fix the tags part in txt
|
|
|
+ (setq txt (org-agenda-add-inherited-tags txt tags)))
|
|
|
(let* ((category (or category
|
|
|
org-category
|
|
|
(if buffer-file-name
|
|
@@ -3836,7 +3843,8 @@ Any match of REMOVE-RE will be removed from TXT."
|
|
|
|
|
|
;; And finally add the text properties
|
|
|
(org-add-props rtn nil
|
|
|
- 'org-category (downcase category) 'tags (mapcar 'downcase tags)
|
|
|
+ 'org-category (downcase category)
|
|
|
+ 'tags (mapcar 'org-downcase-keep-props tags)
|
|
|
'org-highest-priority org-highest-priority
|
|
|
'org-lowest-priority org-lowest-priority
|
|
|
'prefix-length (- (length rtn) (length txt))
|
|
@@ -3849,6 +3857,34 @@ Any match of REMOVE-RE will be removed from TXT."
|
|
|
'extra extra
|
|
|
'dotime dotime))))
|
|
|
|
|
|
+(defun org-agenda-add-inherited-tags (txt tags)
|
|
|
+ "Remove tags string from TXT, and add complete list of tags.
|
|
|
+The new list includes inherited tags. If any inherited tags are present,
|
|
|
+a double colon separates inherited tags from local tags."
|
|
|
+ (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@:]+:\\)[ \t]*$") txt)
|
|
|
+ (setq txt (substring txt 0 (match-beginning 0))))
|
|
|
+ (when tags
|
|
|
+ (let ((have-i (get-text-property 0 'inherited (car tags)))
|
|
|
+ i)
|
|
|
+ (setq txt (concat txt " :"
|
|
|
+ (mapconcat
|
|
|
+ (lambda (x)
|
|
|
+ (setq i (get-text-property 0 'inherited x))
|
|
|
+ (if (and have-i (not i))
|
|
|
+ (progn
|
|
|
+ (setq have-i nil)
|
|
|
+ (concat ":" x))
|
|
|
+ x))
|
|
|
+ tags ":")
|
|
|
+ (if have-i "::" ":")))))
|
|
|
+ txt)
|
|
|
+
|
|
|
+(defun org-downcase-keep-props (s)
|
|
|
+ (let ((props (text-properties-at 0 s)))
|
|
|
+ (setq s (downcase s))
|
|
|
+ (add-text-properties 0 (length s) props s)
|
|
|
+ s))
|
|
|
+
|
|
|
(defvar org-agenda-sorting-strategy) ;; because the def is in a let form
|
|
|
(defvar org-agenda-sorting-strategy-selected nil)
|
|
|
|