nobiot / org-transclusion

Emacs package to enable transclusion with Org Mode
https://nobiot.github.io/org-transclusion/
GNU General Public License v3.0
902 stars 43 forks source link

Transclusion at startup #218

Open jacquesdurden opened 6 months ago

jacquesdurden commented 6 months ago

org-transclusion is great, than you for it!

Little question, how can I ensure org-transclusion is activated when opening a file, without running org-transclusion-add?

I tried (add-hook 'org-mode 'org-transclusion-mode) or (setq org-transclusion-add-all-on-activate t)without any success.

nobiot commented 6 months ago

The name of the hook should be org-mode-hook, so I think it should be:

(add-hook 'org-mode-hook 'org-transclusion-mode)