Skip to content

Commit

Permalink
Fix display of error message
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasFeher committed Dec 11, 2024
1 parent d308a97 commit ae58d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/vim-bob.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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 . ''':'
Expand Down

0 comments on commit ae58d20

Please sign in to comment.