You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Enable chat
Starting point for chat integration: enabling the server.
* Proper codeium#Chat() function
This launches the browser the same way the initial authentication does.
* Bugfix no-submit issue
I forgot ide_telemetry_enabled=true which is needed for chat.
* Automate workspace tracking
* Don't search for project root until necessary
* Whitespace fix
* Whitespace fix
* Document how to launch chat
* Whitespace cleanup in README
(Make sure that you ran `:Codeium Auth` after installation.)
103
102
104
-
105
103
### ⛔ Disabling Codeium
106
104
107
105
Codeium can be disabled for particular filetypes by setting the
@@ -141,6 +139,7 @@ let g:codeium_manual = v:true
141
139
Codeium status can be generated by calling the `codeium#GetStatusString()` function. In
142
140
Neovim, you can use `vim.api.nvim_call_function("codeium#GetStatusString", {})` instead.
143
141
It produces a 3 char long string with Codeium status:
142
+
144
143
-`'3/8'` - third suggestion out of 8
145
144
-`'0'` - Codeium returned no suggestions
146
145
-`'*'` - waiting for Codeium response
@@ -160,6 +159,16 @@ Please check `:help statusline` for further information about building statuslin
160
159
161
160
vim-airline supports Codeium out-of-the-box since commit [3854429d](https://github.com/vim-airline/vim-airline/commit/3854429d99c8a2fb555a9837b155f33c957a2202).
162
161
162
+
### Launching Codeium Chat
163
+
164
+
Calling the `codeium#Chat()` function will enable search and indexing in the current project and launch Codeium Chat in a new browser window.
165
+
166
+
The project root is determined by looking in Vim's current working directory for some specific files or directories to be present and goes up to parent directories until one is found. This list of hints is user-configurable and the default value is:
0 commit comments