|
@@ -130,7 +130,7 @@ This is the compiled version of the format.")
|
|
|
(push ov org-columns-overlays)
|
|
|
ov))
|
|
|
|
|
|
-(defun org-columns-display-here (&optional props)
|
|
|
+(defun org-columns-display-here (&optional props dateline)
|
|
|
"Overlay the current line with column display."
|
|
|
(interactive)
|
|
|
(let* ((fmt org-columns-current-fmt-compiled)
|
|
@@ -145,6 +145,7 @@ This is the compiled version of the format.")
|
|
|
'default))
|
|
|
(color (list :foreground (face-attribute ref-face :foreground)))
|
|
|
(face (list color 'org-column ref-face))
|
|
|
+ (face1 (list color 'org-agenda-column-dateline ref-face))
|
|
|
(pl (or (get-text-property (point-at-bol) 'prefix-length) 0))
|
|
|
(cphr (get-text-property (point-at-bol) 'org-complex-heading-regexp))
|
|
|
pom property ass width f string ov column val modval s1 s2 title)
|
|
@@ -189,7 +190,7 @@ This is the compiled version of the format.")
|
|
|
;; Create the overlay
|
|
|
(org-unmodified
|
|
|
(setq ov (org-columns-new-overlay
|
|
|
- beg (setq beg (1+ beg)) string face))
|
|
|
+ beg (setq beg (1+ beg)) string (if dateline face1 face)))
|
|
|
(org-overlay-put ov 'keymap org-columns-map)
|
|
|
(org-overlay-put ov 'org-columns-key property)
|
|
|
(org-overlay-put ov 'org-columns-value (cdr ass))
|
|
@@ -1282,7 +1283,7 @@ This will add overlays to the date lines, to show the summary for each day."
|
|
|
0 (length lsum) 'face 'bold lsum)
|
|
|
(cons prop lsum))))
|
|
|
fmt))
|
|
|
- (org-columns-display-here props)
|
|
|
+ (org-columns-display-here props 'dateline)
|
|
|
(org-set-local 'org-agenda-columns-active t)))
|
|
|
(if (bobp) (throw 'exit t))
|
|
|
(beginning-of-line 0))))))
|