copilot.el
copilot.el copied to clipboard
Error running timer ‘copilot--post-command-debounce’: (void-function company--active-p)
I recently disabled company and started working with corfu, and am having difficulty understanding how to circumvent this error
I have similar issure for Error msg "Error running timer 'copilot--post-command-debounce': (wrong-type-argument sequence 4)"
@guibor @jidibinlin
Have you customized the variable copilot-enable-predicates
or copilot-disable-predicates
?
If you're using Robert Krahn's .emacs for configuring copilot, you have to delete the reference to company--active-p
here.
@guibor have you indeed managed to solve your problem?
@zerolfx I didn`t. this is my value of copilot-enbale-predicates
(evil-insert-state-p copilot--buffer-changed)
Same issue here, this is what I have
; ...
(use-package quelpa)
(use-package quelpa-use-package)
; ...
(use-package copilot
:quelpa (copilot :fetcher github
:repo "copilot-emacs/copilot.el"
:branch "main"
:files ("dist" "*.el")))
(add-hook 'go-mode-hook 'copilot-mode)
Removing elpa/qelpa caches worked for some reason.