Skip to content

Commit

Permalink
Project import generated by Copybara. (#413)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 3223bc9530ff4f26f7bfd902a7e126e45ca6e5ab

Co-authored-by: Copybara Bot <[email protected]>
  • Loading branch information
pqn and Copybara Bot authored Jul 11, 2024
1 parent 7a01ffb commit e0342fd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions autoload/codeium.vim
Original file line number Diff line number Diff line change
Expand Up @@ -423,9 +423,9 @@ function! s:LaunchChat(out, err, status) abort
let l:ws_port = l:processes['chatWebServerPort']

let config = get(g:, 'codeium_server_config', {})
let l:has_enterprise_extension = "false"
let l:has_enterprise_extension = 'false'
if has_key(config, 'api_url') && !empty(config.api_url)
let l:has_enterprise_extension = "true"
let l:has_enterprise_extension = 'true'
endif

" Hard-coded to English locale and allowed telemetry.
Expand Down Expand Up @@ -475,7 +475,7 @@ function! codeium#AddTrackedWorkspace() abort
endif
let s:codeium_workspace_indexed = v:true
try
call codeium#server#Request('AddTrackedWorkspace', {"workspace": s:GetProjectRoot()})
call codeium#server#Request('AddTrackedWorkspace', {'workspace': s:GetProjectRoot()})
catch
call codeium#log#Exception()
endtry
Expand Down
4 changes: 2 additions & 2 deletions autoload/codeium/server.vim
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
let s:language_server_version = '1.8.62'
let s:language_server_sha = '974fba83e340c3ff6491e384bb6787236ed887be'
let s:language_server_version = '1.8.80'
let s:language_server_sha = 'ea9a89028334feda7d7ab8900d5f1d58e2f7c361'
let s:root = expand('<sfile>:h:h:h')
let s:bin = v:null

Expand Down

0 comments on commit e0342fd

Please sign in to comment.