Open margaretjoanmiller opened 1 year ago
It seems to be some message that Embark displays using eldoc functionality? You can take a look at eldoc-documentation-functions
and see if there's anything you can configure.
@0x4d6165 This is caused by this hook that I assume you have set:
(add-hook 'eldoc-documentation-functions #'embark-eldoc-first-target)
Here's the full text from example config on #oantolin/embark
;; Show the Embark target at point via Eldoc. You may adjust the Eldoc
;; strategy, if you want to see the documentation from multiple providers.
(add-hook 'eldoc-documentation-functions #'embark-eldoc-first-target)
;; (setq eldoc-documentation-strategy #'eldoc-documentation-compose-eagerly)
States you can adjust strategy, but I found out it was still just to chatty and took-out that hook.
is there a way to prevent the "embark on _____" messages from appearing in eldoc-boxes?