From e30b4c9d6a615cdad8d7d8636b380d9bdcce145e Mon Sep 17 00:00:00 2001 From: Michael Coppola Date: Tue, 22 Oct 2024 09:45:21 -0400 Subject: [PATCH] fixed job_start creating new scratch buffers --- examples/llama.vim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/llama.vim b/examples/llama.vim index d85237eee..deaa73fd6 100644 --- a/examples/llama.vim +++ b/examples/llama.vim @@ -484,8 +484,7 @@ function! llama#fim(is_auto) abort elseif s:vim_ghost_text let s:current_job = job_start(l:curl_command, { \ 'out_cb': function('s:fim_on_stdout', [s:pos_x, s:pos_y, a:is_auto]), - \ 'close_cb': function('s:vim_fim_on_exit'), - \ 'out_io': 'buffer' + \ 'close_cb': function('s:vim_fim_on_exit') \ }) endif