From bb9a5087b8d9fb78f7a3ecfd29faefc37cff4f0d Mon Sep 17 00:00:00 2001 From: Rafli Surya Wijaya <260355617@qq.com> Date: Wed, 26 Aug 2026 22:55:45 +0800 Subject: [PATCH] fix(health): powershell "echo" fails without an arg #41477 --- runtime/lua/vim/health/health.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/lua/vim/health/health.lua b/runtime/lua/vim/health/health.lua index cbdd254d98..c3bbb70abc 100644 --- a/runtime/lua/vim/health/health.lua +++ b/runtime/lua/vim/health/health.lua @@ -286,7 +286,7 @@ local function check_performance() local slow_cmd_time = 1.5e9 local start_time = vim.uv.hrtime() -- Vimscript's system() is used to actually invoke a shell - vim.fn.system('echo') + vim.fn.system('echo 1') local elapsed_time = vim.uv.hrtime() - start_time if elapsed_time > slow_cmd_time then health.warn(