org-transclusion icon indicating copy to clipboard operation
org-transclusion copied to clipboard

`org-transclusion-fringe` does not display in doom emacs

Open osheari1 opened this issue 5 months ago • 1 comments

When settings the fringe variables, the source frindge displays correctly, however the transclusion fringe does not.

(custom-set-faces! '(org-transclusion-fringe
                     :forground "#ebf6fa"
                     :background "#ebf6fa"))
(custom-set-faces! '(org-transclusion-source-fringe
                     :forground "#ebf6fa"
                     :background "#ebf6fa"))

In the code below, it seems that the call to overlay-put may be missing?

....
      (overlay-put ov-tc 'line-prefix (org-transclusion-propertize-transclusion))
      (overlay-put ov-tc 'wrap-prefix (org-transclusion-propertize-transclusion))
...

https://github.com/nobiot/org-transclusion/blob/main/org-transclusion.el#L1080

Screenshot_20240910_162628

osheari1 avatar Sep 10 '24 14:09 osheari1