Skip to content

Commit 3fbe4fe

Browse files
committed
fix(ui): open diff and others over the ui. Don't try to be smart about it. Fixes #361
1 parent 0741d62 commit 3fbe4fe

File tree

1 file changed

+1
-23
lines changed

1 file changed

+1
-23
lines changed

lua/lazy/util.lua

+1-23
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,7 @@ end
77

88
---@param opts? LazyFloatOptions
99
function M.float(opts)
10-
opts = opts or {}
11-
local cursor
12-
local View = require("lazy.view")
13-
if View.visible() then
14-
-- set cursor to the top of the ui, so the tabs are visible
15-
cursor = vim.api.nvim_win_get_cursor(View.view.win)
16-
vim.api.nvim_win_set_cursor(View.view.win, { 1, 0 })
17-
opts = vim.tbl_deep_extend("force", {
18-
zindex = 60,
19-
border = "none",
20-
margin = { top = 3, left = 2, right = 2 },
21-
}, opts)
22-
end
23-
local ret = require("lazy.view.float")(opts)
24-
-- restore the cursor
25-
if cursor then
26-
ret:on("BufLeave", function()
27-
if View.visible() then
28-
vim.api.nvim_win_set_cursor(View.view.win, cursor)
29-
end
30-
end, { once = true })
31-
end
32-
return ret
10+
return require("lazy.view.float")(opts)
3311
end
3412

3513
function M.open(uri)

0 commit comments

Comments
 (0)