Found the answer. It is with "Code Lens" in the settings. Disabling Code Lens in VS Code settings will stop the pop up from Codeium
Answer from bkw on Stack Overflowvscode extensions - How to turn off "Codeium: Edit (Ctrl + l)" from popping up in Visual Studio Code? - Stack Overflow
Is there a shortcut to quickly disable or enable Codeium in vscode ?
Visual Studio 2022 and Tab
Use both Copilot and Codeium in parallel?
Videos
How do I change the keybindings for Codeium to accept the suggestion. I hate using tab for this. I want to change it to ctrl+f or something and disable tab. I can do it in nvim but every once in a while I have to use vscode. I can 't find any documentation on how to do this in vscode.
Edit:
After digging for a while I got it finnally. I had to disable the Accept Inline Suggestion keybinding and added the following.
{
"key": "ctrl+f",
"command": "editor.action.inlineSuggest.commit",
"when": "vim.mode == 'Insert' && editorTextFocus && !suggestWidgetVisible"
},Hi I'm using Codeium in Visual Studio 2022 and it works good. I get a problem that I c'ant figure how to workarround :
Whenever Visual Studio and Codeium both have a suggestion, when I hit the Tab key, it's Visual Studio's suggestion that is selected and not Codeium's, since Tab is also used for that in Visual Studio. How can I pick the codeium suggestion in this situation ?
Is there another shortcut than Tab for that ? Can I assign one ?


