From c546b12fffcda06b2bd842cb06008a46e7a77cbb Mon Sep 17 00:00:00 2001 From: Avinash Thakur Date: Fri, 14 Mar 2025 01:49:54 +0530 Subject: [PATCH 1/4] fix: use vim.ui.open to open uri fixes #1947 --- lua/lazy/util.lua | 27 ++++++--------------------- 1 file changed, 6 insertions(+), 21 deletions(-) diff --git a/lua/lazy/util.lua b/lua/lazy/util.lua index fed140c..ff94056 100644 --- a/lua/lazy/util.lua +++ b/lua/lazy/util.lua @@ -25,30 +25,15 @@ function M.open(uri, opts) if not opts.system and M.file_exists(uri) then return M.float({ style = "", file = uri }) end - local Config = require("lazy.core.config") - local cmd - if not opts.system and Config.options.ui.browser then - cmd = { Config.options.ui.browser, uri } - elseif vim.fn.has("win32") == 1 then - cmd = { "explorer", uri } - elseif vim.fn.has("macunix") == 1 then - cmd = { "open", uri } - else - if vim.fn.executable("xdg-open") == 1 then - cmd = { "xdg-open", uri } - elseif vim.fn.executable("wslview") == 1 then - cmd = { "wslview", uri } - else - cmd = { "open", uri } - end + local cmd, err = vim.ui.open(uri) + if cmd then + cmd:wait() end - - local ret = vim.fn.jobstart(cmd, { detach = true }) - if ret <= 0 then + if err then local msg = { "Failed to open uri", - ret, - vim.inspect(cmd), + err, + vim.inspect(uri), } vim.notify(table.concat(msg, "\n"), vim.log.levels.ERROR) end From d1f6c3c6ee171d9d21ed96594273391638f3075b Mon Sep 17 00:00:00 2001 From: Avinash Thakur <19588421+80avin@users.noreply.github.com> Date: Fri, 14 Mar 2025 11:16:21 +0530 Subject: [PATCH 2/4] Update util.lua --- lua/lazy/util.lua | 51 +++++++++++++++++++++++++++++++++++++---------- 1 file changed, 40 insertions(+), 11 deletions(-) diff --git a/lua/lazy/util.lua b/lua/lazy/util.lua index ff94056..1973ec2 100644 --- a/lua/lazy/util.lua +++ b/lua/lazy/util.lua @@ -25,17 +25,46 @@ function M.open(uri, opts) if not opts.system and M.file_exists(uri) then return M.float({ style = "", file = uri }) end - local cmd, err = vim.ui.open(uri) - if cmd then - cmd:wait() - end - if err then - local msg = { - "Failed to open uri", - err, - vim.inspect(uri), - } - vim.notify(table.concat(msg, "\n"), vim.log.levels.ERROR) + if vim.fn.has('nvim-0.10.0') 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() + end + if err then + local msg = { + "Failed to open uri", + err, + vim.inspect(uri), + } + vim.notify(table.concat(msg, "\n"), vim.log.levels.ERROR) + end + else + local Config = require("lazy.core.config") + local cmd + if not opts.system and Config.options.ui.browser then + cmd = { Config.options.ui.browser, uri } + elseif vim.fn.has("win32") == 1 then + cmd = { "explorer", uri } + elseif vim.fn.has("macunix") == 1 then + cmd = { "open", uri } + else + if vim.fn.executable("xdg-open") == 1 then + cmd = { "xdg-open", uri } + elseif vim.fn.executable("wslview") == 1 then + cmd = { "wslview", uri } + elseif vim.fn.executable("explorer.exe") == 1 then + cmd = { "explorer.exe", uri } + else + cmd = { "open", uri } + end + end end end From 5f10bb0e004a4ff43d98f8f4d80259867c3b3a9a Mon Sep 17 00:00:00 2001 From: Avinash Thakur <19588421+80avin@users.noreply.github.com> Date: Fri, 14 Mar 2025 11:19:56 +0530 Subject: [PATCH 3/4] Update util.lua --- lua/lazy/util.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lazy/util.lua b/lua/lazy/util.lua index 1973ec2..fcc17f3 100644 --- a/lua/lazy/util.lua +++ b/lua/lazy/util.lua @@ -25,7 +25,7 @@ function M.open(uri, opts) if not opts.system and M.file_exists(uri) then return M.float({ style = "", file = uri }) end - if vim.fn.has('nvim-0.10.0') then + if vim.fn.has('nvim-0.10.0') == 1 then local ret = vim.fn.jobstart(cmd, { detach = true }) if ret <= 0 then local msg = { 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 4/4] 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