Skip to content

Commit 2451ea4

Browse files
authored
feat: use "wslview" instead of "xsl-open" if it exsits (#509)
1 parent 4272d21 commit 2451ea4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lua/lazy/util.lua

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ function M.open(uri)
2525
else
2626
if vim.fn.executable("xdg-open") then
2727
cmd = { "xdg-open", uri }
28+
elseif vim.fn.executable("wslview") then
29+
cmd = { "wslview", uri }
2830
else
2931
cmd = { "open", uri }
3032
end

0 commit comments

Comments
 (0)