Exafunction / codeium.vim

Free, ultrafast Copilot alternative for Vim and Neovim
https://codeium.com
MIT License
3.68k stars 124 forks source link

What s happen ?? #379

Open kamalkech opened 2 weeks ago

kamalkech commented 2 weeks ago

Today codeium not working at all, i already authenticated and ofc copy past token key then restard my ide but still not working !!!

pojokcodeid commented 2 weeks ago

working on my code with the following config

return {
     "Exafunction/codeium.vim",
          enabled = true,
          version = "1.8.37",
          event = "InsertEnter",
      config = function()
        vim.keymap.set("i", "<C-g>", function()
                      return vim.fn["codeium#Accept"]()
                 end, { expr = true, silent = true })
      end
}
tariqbaater commented 2 weeks ago

Just downgrade to version '1.8.37' it should work.

fortenforge commented 2 weeks ago

https://github.com/Exafunction/codeium.vim/issues/376#issuecomment-2159643405

daUnknownCoder commented 1 week ago

downgrading to 1.8.37 doesnt work for me

aemonge commented 1 week ago

Same, I'll keep track of this post when the newer versions work so that We can all “rollback” to regular updates.

pojokcodeid commented 1 week ago

use update version with the step

image

aemonge commented 1 week ago

That might work, but in my personal opinion, that even harder to track.

pojokcodeid commented 1 week ago

alternative https://github.com/Exafunction/codeium.nvim

  return {
    -- codeium cmp source
    {
      "nvim-cmp",
      dependencies = {
        -- codeium
        {
          "Exafunction/codeium.nvim",
          cmd = "Codeium",
          build = ":Codeium Auth",
          opts = {
            enable_chat = true,
          },
        },
      },
      --@param opts cmp.ConfigSchema
      opts = function(_, opts)
        table.insert(opts.sources, 1, {
          name = "codeium",
          group_index = 1,
          priority = 100,
        })
      end,
    },
  }

image

but the problem in chat image