From 881a58787d2dab37ad912f76f78a04771b500d1f Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sat, 21 Sep 2024 20:16:28 +0800 Subject: [PATCH] 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 --- runtime/autoload/dist/vim.vim | 1 - 1 file changed, 1 deletion(-) diff --git a/runtime/autoload/dist/vim.vim b/runtime/autoload/dist/vim.vim index d519406530..bb858c5732 100644 --- 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)) &&