Update util.lua

This commit is contained in:
Avinash Thakur 2025-03-14 11:24:57 +05:30 committed by GitHub
parent 5f10bb0e00
commit f6090f634d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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