Did you check docs and existing issues?
Neovim version (nvim -v)
v0.11.0
Operating system/version
Ubuntu 24.04
Describe the bug
Hi
How are you?
While running :!commands (like :!date) I cannot get the stdout of the command while using nvim v0.11.0

The checkhealth noice show the following output:

If I use the same config, but using nvim v0.10.0, I get the message notification normally.

Thanks in advance.
Best Regards
Steps To Reproduce
Open nvim v0.11.0
In normal mode, use the following "command" :!date
Expected Behavior
Show notification with command stdout
Repro
local root = vim.fn.fnamemodify("./.repro", ":p")
-- set stdpaths to use .repro
for _, name in ipairs({ "config", "data", "state", "cache" }) do
vim.env[("XDG_%s_HOME"):format(name:upper())] = root .. "/" .. name
end
-- bootstrap lazy
local lazypath = root .. "/plugins/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"--single-branch",
"https://github.com/folke/lazy.nvim.git",
lazypath,
})
end
vim.opt.runtimepath:prepend(lazypath)
-- install plugins
local plugins = {
"folke/tokyonight.nvim",
{
"folke/noice.nvim",
dependencies = {
"MunifTanjim/nui.nvim",
"rcarriga/nvim-notify",
},
},
}
require("lazy").setup(plugins, {
root = root .. "/plugins",
})
Did you check docs and existing issues?
Neovim version (nvim -v)
v0.11.0
Operating system/version
Ubuntu 24.04
Describe the bug
Hi
How are you?
While running


:!commands(like:!date) I cannot get the stdout of the command while using nvim v0.11.0The
checkhealth noiceshow the following output:If I use the same config, but using nvim v0.10.0, I get the message notification normally.

Thanks in advance.
Best Regards
Steps To Reproduce
Open nvim v0.11.0
In normal mode, use the following "command"
:!dateExpected Behavior
Show notification with command stdout
Repro