-
Notifications
You must be signed in to change notification settings - Fork 20
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
Cannot see generated suggestion #34
Comments
Experiencing the same problem mentioned above. |
got similar issue but probably different found this in codeium-log
then, also tried to launch app manually
(Vmware VM on M1 with NixOS 23.05) |
@strobe we don't support NixOS directly, but you can try something like what's mentioned in this PR: Exafunction/codeium.vim#149 |
Anyone got this working with doom emacs? |
I have found that it doesn't work when I have eglot enabled. When I turn it off it works as expected, trying to get both to work together. |
@fortenforge so how do you add anything to the default command? |
https://github.com/Exafunction/codeium.el/blob/main/codeium.el#L371 you probably want to modify this line to add "steam-run" |
I added "steam-run" at the 4th line and it worked, thanks (codeium-def codeium-command (api state)
(unless (codeium-state-manager-directory state)
(setf (codeium-state-manager-directory state) (make-temp-file "codeium_" t)))
`("steam-run",(codeium-get-config 'codeium-command-executable api state) ;; here
"--api_server_url" ,(codeium-get-config 'codeium-api-url api state)
"--manager_dir" ,(codeium-state-manager-directory state)
"--register_user_url" ,(codeium-get-config 'codeium-register-user-url api state)
,@(if (codeium-get-config 'codeium-enterprise api state) '("--enterprise_mode"))
"--portal_url" ,(codeium-get-config 'codeium-portal-url api state))) |
Configuration
Using Doom Emacs (latest version using doom upgrade) and Emacs 29.0.91
In packages.el:
(package! codeium :recipe (:host github :repo Exafunction/codeium.el"))
In config.el:
Trying this out, the completion system does something, but I cannot accept it the completion nor can I view it. It only appears in normal mode (nothing during insert mode).
I have tried quite a few keybinds to try and accept the suggestions. Any tips or feedback on anything I did wrong?
The text was updated successfully, but these errors were encountered: