Skip to content

Commit 9406f13

Browse files
authored
1 parent cec5865 commit 9406f13

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

autoload/codeium.vim

-1
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,6 @@ function! s:LaunchChat(out, err, status) abort
403403
let l:has_enterprise_extension = "false"
404404
if has_key(config, 'api_url') && !empty(config.api_url)
405405
let l:has_enterprise_extension = "true"
406-
let args += ['--portal_url', get(config, 'portal_url', 'https://codeium.example.com')]
407406
endif
408407

409408
" Hard-coded to English locale and allowed telemetry.

autoload/codeium/server.vim

+1
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ function! s:ActuallyStart() abort
234234
\ ]
235235
if has_key(config, 'api_url') && !empty(config.api_url)
236236
let args += ['--enterprise_mode']
237+
let args += ['--portal_url', get(config, 'portal_url', 'https://codeium.example.com')]
237238
endif
238239

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

0 commit comments

Comments
 (0)