-
Notifications
You must be signed in to change notification settings - Fork 170
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
Does not work on Neovim #415
Comments
try to use |
Related #399 |
I got the very same issue – I may be wrong, but I reckon it isn’t straightly related to #339. My key-binding settings for Codeium are (nvChad): ai = {
i = {
["<M-Right>"] = {
vim.fn["codeium#Accept"],
"accept suggestion",
},
["<M-Down>"] = {
function()
return vim.fn["codeium#CycleCompletions"](-1)
end,
"previous suggestion",
},
["<M-Up>"] = {
function()
return vim.fn["codeium#CycleCompletions"](1)
end,
"next suggestion",
},
["<M-Left>"] = {
vim.fn["codeium#Clear"],
"clear current suggestion",
},
},
}, I tried to use I also tried to use another functions in place of
By the way, the suggestion has been shown correctly, so I cannot help but think it’s a |
Please give steps to reproduce outside of NvChad, with normal nvim style mappings. |
I have tried a number of the fixes here - the plugin loads with lazy and I am adding some enterprise server options (the ones provided directly from the Codeium website). Codeium Auth works (and takes me to the correct enterprise site) then... nothing, no completions or errors.
Config in Lazy:
The text was updated successfully, but these errors were encountered: