commit 881a58787d2dab37ad912f76f78a04771b500d1f
parent d8cd15e8d67d76a327b5ffa75d54a23dc05b58c9
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sat, 21 Sep 2024 20:16:28 +0800
vim-patch:e6b01cf: runtime(dist): do not output a message if executable is not found (#30451)
closes: vim/vim#15705
https://github.com/vim/vim/commit/e6b01cfe01a2722ec55a011ae04c4c404e88f924
Co-authored-by: Christian Brabandt <cb@256bit.org>
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/runtime/autoload/dist/vim.vim b/runtime/autoload/dist/vim.vim
@@ -19,7 +19,6 @@ if !has('vim9script')
function dist#vim#IsSafeExecutable(filetype, executable)
let cwd = getcwd()
if empty(exepath(a:executable))
- echomsg a:executable .. " not found in $PATH"
return v:false
endif
return get(g:, a:filetype .. '_exec', get(g:, 'plugin_exec', 0)) &&