Skip to content

Commit 7c2eb15

Browse files
committed
feat: util method to open a float
1 parent b34e258 commit 7c2eb15

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lua/lazy/util.lua

+9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ function M.file_exists(file)
55
return vim.loop.fs_stat(file) ~= nil
66
end
77

8+
---@param opts? LazyViewOptions
9+
function M.float(opts)
10+
opts = vim.tbl_deep_extend("force", {
11+
win_opts = { zindex = 60, border = "none" },
12+
margin = { top = 3, left = 2, right = 2 },
13+
}, opts or {})
14+
return require("lazy.view.float")(opts)
15+
end
16+
817
function M.open(uri)
918
if M.file_exists(uri) then
1019
vim.cmd.split()

0 commit comments

Comments
 (0)