eldoc-box icon indicating copy to clipboard operation
eldoc-box copied to clipboard

prettifiers dont work when package is defered

Open DarkWingMcQuack opened this issue 7 months ago • 1 comments

in my config i use elpaca with the use-package macro. if i install eldoc-box with

(use-package eldoc-box
  :general
  (my-leader
    :states 'normal
    "d" 'eldoc-box-help-at-point))

everything works as usual. but if i want to defer the package with

(use-package eldoc-box
  :commands eldoc-box-help-at-point
  :general
  (my-leader
    :states 'normal
    "d" 'eldoc-box-help-at-point))

the prettifiers dont work anymore.

DarkWingMcQuack avatar May 15 '25 20:05 DarkWingMcQuack

Well, that's strange. I have deferred eldoc-box too and it works just fine. What's the value of eldoc-box-buffer-hook for you? And just to be sure, have you tried reproducing this with vanilla Emacs?

casouri avatar May 21 '25 02:05 casouri