We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b34e258 commit 7c2eb15Copy full SHA for 7c2eb15
lua/lazy/util.lua
@@ -5,6 +5,15 @@ function M.file_exists(file)
5
return vim.loop.fs_stat(file) ~= nil
6
end
7
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
+
17
function M.open(uri)
18
if M.file_exists(uri) then
19
vim.cmd.split()
0 commit comments