org-transclusion
org-transclusion copied to clipboard
`org-transclusion-fringe` does not display in doom emacs
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