Skip to content

Commit f1fa17b

Browse files
committed
Revert "feat: GHViewWeb uses "open" under macOS"
This reverts commit e69587f.
1 parent 5e69671 commit f1fa17b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

lua/litee/gh/pr/init.lua

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@ local M = {}
2222
M.autocmds = {}
2323

2424
local function open_nodes_url(node)
25-
if vim.fn.has('mac') then
26-
vim.fn.system({'open', node.url})
27-
else
28-
vim.fn.system({'xdg-open', node.url})
29-
end
25+
vim.fn.system({'xdg-open', node.url})
3026
end
3127

3228
local function ui_req_ctx()

0 commit comments

Comments
 (0)