File tree 2 files changed +9
-10
lines changed
2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
- let s: language_server_version = ' 1.14.11 '
2
- let s: language_server_sha = ' 071907d082576067b0c7a5f2f7659958865d751e '
1
+ let s: language_server_version = ' 1.20.8 '
2
+ let s: language_server_sha = ' 37f12b83df389802b7d4e293b3e1a986aca289c0 '
3
3
let s: root = expand (' <sfile>:h:h:h' )
4
4
let s: bin = v: null
5
5
@@ -186,8 +186,8 @@ function! codeium#server#Start(...) abort
186
186
if has_key (config, ' portal_url' ) && ! empty (config.portal_url)
187
187
let response = system (' curl -s ' . config.portal_url . ' /api/version' )
188
188
if v: shell_error != 0
189
- let s: language_server_version = ' 1.14.11 '
190
- let s: language_server_sha = ' 071907d082576067b0c7a5f2f7659958865d751e '
189
+ let s: language_server_version = response
190
+ let s: language_server_sha = ' enterprise- ' . s: language_server_version
191
191
endif
192
192
endif
193
193
@@ -276,7 +276,7 @@ function! s:ActuallyStart() abort
276
276
let args += [' --portal_url' , get (config, ' portal_url' , ' https://codeium.example.com' )]
277
277
endif
278
278
" If either of these is set, only one vim window (with any number of buffers) will work with Codeium.
279
- " Opening other vim windows won't be able to use Codeium features.
279
+ " Opening other vim windows won't be able to use Codeium features.
280
280
if has_key (chat_ports, ' web_server' ) && ! empty (chat_ports.web_server)
281
281
let args += [' --chat_web_server_port' , chat_ports.web_server]
282
282
endif
Original file line number Diff line number Diff line change @@ -113,19 +113,18 @@ g:codeium_arch Manually set the host architecture, accepted values
113
113
<
114
114
*g:codeium_port_config*
115
115
g:codeium_port_config
116
- Set the ports the chat client and web server use.
116
+ Set the ports the chat client and web server use.
117
117
Pass in web_server and chat_client fields to the mapping to set.
118
- Please note that if either of the ports are specified, only one
119
- window will work with codeium.
120
- That window can have as many buffers within it, but any other
118
+ Please note that if either of the ports are specified, only one
119
+ window will work with codeium.
120
+ That window can have as many buffers within it, but any other
121
121
opened windows will not be able to use Codeium's features.
122
122
>
123
123
let g:codeium_port_config = {
124
124
'web_server': <Your web server port>,
125
125
'chat_client': <Your chat client port>
126
126
}
127
127
<
128
-
129
128
*g:codeium_virtual_text_priority*
130
129
g:codeium_virtual_text_priority
131
130
The priority used for Codeium's virtual text completions
You can’t perform that action at this time.
0 commit comments