> But I'm not sure why this should work while the configuration that comes
> with outline-magic interacts with org-capture.
org-mode is derived mode based on outline-mode. "Derived" in Emacs means
that outline-mode-hook also runs in org-mode.
org-capture-mode is derived mode based on org-mode. S
Well, I was able to fix my issue using the configuration on EmacsWiki
(use-package outline-magic
:ensure t
:config
(eval-after-load 'outline
'(progn
(require 'outline-magic)
(define-key outline-minor-mode-map (kbd "")
'outline-cycle
But I'm not sure why this should