We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4272d21 commit 2451ea4Copy full SHA for 2451ea4
lua/lazy/util.lua
@@ -25,6 +25,8 @@ function M.open(uri)
25
else
26
if vim.fn.executable("xdg-open") then
27
cmd = { "xdg-open", uri }
28
+ elseif vim.fn.executable("wslview") then
29
+ cmd = { "wslview", uri }
30
31
cmd = { "open", uri }
32
end
0 commit comments