Skip to content

Commit

Permalink
fix (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
fortenforge authored May 3, 2024
1 parent cec5865 commit 9406f13
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion autoload/codeium.vim
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,6 @@ function! s:LaunchChat(out, err, status) abort
let l:has_enterprise_extension = "false"
if has_key(config, 'api_url') && !empty(config.api_url)
let l:has_enterprise_extension = "true"
let args += ['--portal_url', get(config, 'portal_url', 'https://codeium.example.com')]
endif

" Hard-coded to English locale and allowed telemetry.
Expand Down
1 change: 1 addition & 0 deletions autoload/codeium/server.vim
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ function! s:ActuallyStart() abort
\ ]
if has_key(config, 'api_url') && !empty(config.api_url)
let args += ['--enterprise_mode']
let args += ['--portal_url', get(config, 'portal_url', 'https://codeium.example.com')]
endif

call codeium#log#Info('Launching server with manager_dir ' . manager_dir)
Expand Down

0 comments on commit 9406f13

Please sign in to comment.