From f6090f634d56f2601d8368ca44237fda2a033a67 Mon Sep 17 00:00:00 2001 From: Avinash Thakur <19588421+80avin@users.noreply.github.com> Date: Fri, 14 Mar 2025 11:24:57 +0530 Subject: [PATCH] Update util.lua --- lua/lazy/util.lua | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/lua/lazy/util.lua b/lua/lazy/util.lua index fcc17f3..d9d0873 100644 --- a/lua/lazy/util.lua +++ b/lua/lazy/util.lua @@ -26,13 +26,6 @@ function M.open(uri, opts) return M.float({ style = "", file = uri }) end if vim.fn.has('nvim-0.10.0') == 1 then - local ret = vim.fn.jobstart(cmd, { detach = true }) - if ret <= 0 then - local msg = { - "Failed to open uri", - ret, - vim.inspect(cmd), - } local cmd, err = vim.ui.open(uri) if cmd then cmd:wait() @@ -65,6 +58,15 @@ function M.open(uri, opts) cmd = { "open", uri } end end + local ret = vim.fn.jobstart(cmd, { detach = true }) + if ret <= 0 then + local msg = { + "Failed to open uri", + ret, + vim.inspect(cmd), + } + vim.notify(table.concat(msg, "\n"), vim.log.levels.ERROR) + end end end