mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
fix(org): eldoc showing empty heading breadcrumbs
Fix: #6795
Amend: ab9896c526
This commit is contained in:
@ -536,7 +536,8 @@ relative to `org-directory', unless it is an absolute path."
|
||||
(if-let ((type (org-element-property :type context))
|
||||
(eldocfn (org-link-get-parameter type :eldoc)))
|
||||
(funcall eldocfn context)
|
||||
(format "Link: %s" (org-element-property :raw-link context)))))
|
||||
(when-let (raw-link (org-element-property :raw-link context))
|
||||
(format "Link: %s" raw-link)))))
|
||||
|
||||
;; Add "lookup" links for packages and keystrings; useful for Emacs
|
||||
;; documentation -- especially Doom's!
|
||||
|
Reference in New Issue
Block a user