aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2024-09-21 20:16:28 +0800
committerGitHub <noreply@github.com>2024-09-21 12:16:28 +0000
commit881a58787d2dab37ad912f76f78a04771b500d1f (patch)
tree335d0ec971f8186e03db178f4257916d23925f83
parentd8cd15e8d67d76a327b5ffa75d54a23dc05b58c9 (diff)
downloadrneovim-881a58787d2dab37ad912f76f78a04771b500d1f.tar.gz
rneovim-881a58787d2dab37ad912f76f78a04771b500d1f.tar.bz2
rneovim-881a58787d2dab37ad912f76f78a04771b500d1f.zip
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>
-rw-r--r--runtime/autoload/dist/vim.vim1
1 files changed, 0 insertions, 1 deletions
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)) &&