minad / consult

:mag: consult.el - Consulting completing-read
GNU General Public License v3.0
1.12k stars 98 forks source link

consult-register not working anymore #940

Closed MarcRohrer closed 3 months ago

MarcRohrer commented 3 months ago

Hi minad,

since the last update consult-register does not work for me anymore.

I get:

Autoloading file c:/emacs/.emacs.d/elpa/consult-20240209.2104/consult.elc failed to define function consult-register

I reinstalled consult and also recompiled consult.el as well as consult-register.el, but no change. Am I doing something wrong?

My config:

 (use-package consult
        :bind (("M-i" . consult-ripgrep)
               ("<f4>" . consult-register)
               ("C-g" . consult-goto-line)
               ("<" . consult-narrow-key)
               (">" . consult-widen-key))
        :hook (completion-list-mode . consult-preview-at-point-mode)
        :init
        (setq consult-narrow-key "<")
        (setq consult-widen-key ">")
        (setq xref-show-xrefs-function #'consult-xref
              xref-show-definitions-function #'consult-xref))

Thank you very much for your time!

Marc