From 858a0e44a3d79132a7d5901157c967968b3f98f3 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 31 Jul 2021 02:07:05 -0400 Subject: [PATCH] feat(org): open help:* links with helpful-* Rather than describe-* --- modules/lang/org/config.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/lang/org/config.el b/modules/lang/org/config.el index 05773faed..42a5d3904 100644 --- a/modules/lang/org/config.el +++ b/modules/lang/org/config.el @@ -591,6 +591,9 @@ mutating hooks on exported output, like formatters." (add-to-list 'org-file-apps '(directory . emacs)) (add-to-list 'org-file-apps '(remote . emacs)) + ;; Open help:* links with helpful-* instead of describe-* + (advice-add #'org-link--open-help :around #'doom-use-helpful-a) + (defadvice! +org--show-parents-a (&optional arg) "Show all headlines in the buffer, like a table of contents. With numerical argument N, show content up to level N."