Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cape-capf-super seems not support codeium-completion-at-point? #97

Open
zijianyue opened this issue Mar 15, 2024 · 4 comments
Open

cape-capf-super seems not support codeium-completion-at-point? #97

zijianyue opened this issue Mar 15, 2024 · 4 comments

Comments

@zijianyue
Copy link

zijianyue commented Mar 15, 2024

I use codeium with corfu like this, but I don't get the expected integrated candidates(lsp candidates are not present).

(add-hook 'lsp-after-open-hook
          (lambda ()
            (setq-local completion-at-point-functions
                        (list 
                         (cape-capf-super
                          #'codeium-completion-at-point
                          #'lsp-completion-at-point)))))
image
@polhuang
Copy link

I had this issue as well. For me it was just easier to decouple codeium from the other capf's with cape, like so:

(defun my/codeium ()
  "Decouple codeium from other completions"
  (interactive)
  (cape-interactive #'codeium-completion-at-point))

@stsquad
Copy link

stsquad commented Jun 5, 2024

@polhuang so you need to trigger codium with a separate key?

@Artawower
Copy link

Is there any workaround to make them work together?

@tjohnman
Copy link

I had this issue as well. For me it was just easier to decouple codeium from the other capf's with cape, like so:

(defun my/codeium ()
  "Decouple codeium from other completions"
  (interactive)
  (cape-interactive #'codeium-completion-at-point))

Did you manage to get Codeium to show up with a preview and no popups, similar to copilot.el? I wish I could write elisp well enough to whip up my own solution, but I cannot.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants