From ae58d203093a1b6e22aaa7ddf6f3626506b8ac4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Feh=C3=A9r?= Date: Wed, 11 Dec 2024 14:24:49 +0100 Subject: [PATCH] Fix display of error message --- plugin/vim-bob.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/vim-bob.vim b/plugin/vim-bob.vim index b631cb1..7e97912 100644 --- a/plugin/vim-bob.vim +++ b/plugin/vim-bob.vim @@ -823,7 +823,7 @@ function! s:Persist() \ . join(s:project_query_options, ' ') . ' ' . s:project_name let l:query_result = systemlist(l:query_command) if v:shell_error - echoerr "error calling '" . l:query_command . "': " . trim(l:query_result) + echoerr "error calling '" . l:query_command . "': " . trim(join(l:query_result)) return endif echo 'Output of ''' . l:query_command . ''':'