Closed M1ndo closed 1 year ago
Hi, please narrow down the problem first to a minimal configuration starting from emacs -Q. Thanks!
Hi, please narrow down the problem first to a minimal configuration starting from emacs -Q. Thanks!
Hi, Apologies for the previous messy report, i've been debugging this and turns out recently i remapped the default face with a custom one only for python-mode. However still this should work but it doesn't and its something has to do with corfu-popup
(defface my-python-face '((t (:inherit default :family "Iosevka Term" :size 11)))
"Face for Python mode."
:group 'basic-faces)
(add-hook 'python-mode-hook
(lambda ()
(setq-local face-remapping-alist '((default . my-python-face)))))
It seems your remapping is incompatible with Corfu's assumptions. You can try instead ((default my-python-face))
.
It seems your remapping is incompatible with Corfu's assumptions. You can try instead
((default my-python-face))
.
Thanks, it worked really well.
I've been using corfu with orderless + cape for the past weeks and its been working really well, suddenly after i updated some packages. Corfu doesn't wanna work anymore with python-mode no completion whatsoever, it works with other prog-modes and other modes. Using doom emacs on Emacs 29.0.90 my corfu config