We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
org-transclusion-fringe
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
The text was updated successfully, but these errors were encountered:
@osheari1 , I have spent some time testing the issue.
By the looks of the screen image above, do you have org-indent-mode turned on?
org-indent-mode
Can you check if the issue persists if it is turned off?
I can reproduce the problem only when I have org-indent-mode active. And we have a support for it with org-transclusion-indent-mode.
org-transclusion-indent-mode
On my end, if I activate the org-transclusion-indent-mode, the transclusion fringe appears.
Sorry, something went wrong.
Hey, thanks for testing this out.
I'll test this out as soon as I can. Apologies for the delay, the last couple months have been hectic.
I encountered the same issue, and the transclusion-indent-mode works for me.
transclusion-indent-mode
Successfully merging a pull request may close this issue.
When settings the fringe variables, the source frindge displays correctly, however the transclusion fringe does not.
In the code below, it seems that the call to overlay-put may be missing?
https://github.com/nobiot/org-transclusion/blob/main/org-transclusion.el#L1080
The text was updated successfully, but these errors were encountered: