Skip to content

Commit

Permalink
fix(health): allow running in GUIs with multigrid
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Jul 25, 2023
1 parent c7969e3 commit 71a7591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/noice/health.lua
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function M.check(opts)
local uis = vim.api.nvim_list_uis()
for _, ui in ipairs(uis) do
local ok = true
for _, ext in ipairs({ "ext_multigrid", "ext_cmdline", "ext_popupmenu", "ext_messages" }) do
for _, ext in ipairs({ "ext_cmdline", "ext_popupmenu", "ext_messages" }) do
if ui[ext] then
ok = false
log.error(
Expand Down

0 comments on commit 71a7591

Please sign in to comment.