From 3fb53abe2a7ff163dc01d80d4c38c1265a8fa2b4 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Tue, 28 Oct 2025 10:52:22 -0400 Subject: [PATCH] fix(health): attempt to concatenate table value #36369 --- runtime/lua/vim/health/health.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/runtime/lua/vim/health/health.lua b/runtime/lua/vim/health/health.lua index 3817a4c860..ede32dbcb4 100644 --- a/runtime/lua/vim/health/health.lua +++ b/runtime/lua/vim/health/health.lua @@ -261,14 +261,14 @@ local function check_tmux() local ok, out = system(cmd) local val = vim.fn.substitute(out, [[\v(\s|\r|\n)]], '', 'g') if not ok then - health.error('command failed: ' .. cmd .. '\n' .. out) + health.error(('command failed: %s\n%s'):format(vim.inspect(cmd), out)) return 'error' elseif val == '' then cmd = { 'tmux', 'show-option', '-qvgs', option } -- try session scope ok, out = system(cmd) val = vim.fn.substitute(out, [[\v(\s|\r|\n)]], '', 'g') if not ok then - health.error('command failed: ' .. cmd .. '\n' .. out) + health.error(('command failed: %s\n%s'):format(vim.inspect(cmd), out)) return 'error' end end @@ -316,7 +316,7 @@ local function check_tmux() end if not ok then - health.error('command failed: ' .. cmd .. '\n' .. out) + health.error(('command failed: %s\n%s'):format(vim.inspect(cmd), out)) elseif tmux_default_term ~= vim.env.TERM then health.info('default-terminal: ' .. tmux_default_term) health.error( @@ -372,7 +372,7 @@ local function check_terminal() == '' ) then - health.error('command failed: ' .. cmd .. '\n' .. out) + health.error(('command failed: %s\n%s'):format(vim.inspect(cmd), out)) else health.info( vim.fn.printf(