We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 62214df commit e61b334Copy full SHA for e61b334
lua/lazy/view/diff.lua
@@ -23,11 +23,13 @@ M.handlers = {
23
24
---@type LazyDiffFun
25
["diffview.nvim"] = function(plugin, diff)
26
+ local args
27
if diff.commit then
- vim.cmd.DiffviewOpen(("-C=%s"):format(plugin.dir) .. " " .. diff.commit)
28
+ args = ("-C=%s"):format(plugin.dir) .. " " .. diff.commit
29
else
- vim.cmd.DiffviewOpen(("-C=%s"):format(plugin.dir) .. " " .. diff.from .. ".." .. diff.to)
30
+ args = ("-C=%s"):format(plugin.dir) .. " " .. diff.from .. ".." .. diff.to
31
end
32
+ vim.cmd("DiffviewOpen " .. args)
33
end,
34
35
0 commit comments