codeium.vim icon indicating copy to clipboard operation
codeium.vim copied to clipboard

What s happen ??

Open kamalkech opened this issue 1 year ago • 8 comments

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

kamalkech avatar Jun 10 '24 11:06 kamalkech

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
}

pojokcodeid avatar Jun 10 '24 15:06 pojokcodeid

Just downgrade to version '1.8.37' it should work.

tariqbaater avatar Jun 10 '24 16:06 tariqbaater

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

fortenforge avatar Jun 11 '24 02:06 fortenforge

downgrading to 1.8.37 doesnt work for me

daUnknownCoder avatar Jun 13 '24 13:06 daUnknownCoder

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

aemonge avatar Jun 13 '24 14:06 aemonge

use update version with the step - find codeium dir - ~/.codeium/code_tracker - rename code_tracker - load Neovim and Codeium

image

pojokcodeid avatar Jun 14 '24 08:06 pojokcodeid

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

aemonge avatar Jun 14 '24 08:06 aemonge

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

pojokcodeid avatar Jun 14 '24 08:06 pojokcodeid