File tree 2 files changed +7
-5
lines changed
2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,12 @@ M.handlers = {
32
32
33
33
--- @type LazyDiffFun
34
34
git = function (plugin , diff )
35
- local cmd = { " git" , " diff " }
35
+ local cmd = { " git" }
36
36
if diff .commit then
37
+ cmd [# cmd + 1 ] = " show"
37
38
cmd [# cmd + 1 ] = diff .commit
38
39
else
40
+ cmd [# cmd + 1 ] = " diff"
39
41
cmd [# cmd + 1 ] = diff .from
40
42
cmd [# cmd + 1 ] = diff .to
41
43
end
@@ -44,10 +46,12 @@ M.handlers = {
44
46
45
47
--- @type LazyDiffFun
46
48
terminal_git = function (plugin , diff )
47
- local cmd = { " git" , " diff " }
49
+ local cmd = { " git" }
48
50
if diff .commit then
51
+ cmd [# cmd + 1 ] = " show"
49
52
cmd [# cmd + 1 ] = diff .commit
50
53
else
54
+ cmd [# cmd + 1 ] = " diff"
51
55
cmd [# cmd + 1 ] = diff .from
52
56
cmd [# cmd + 1 ] = diff .to
53
57
end
Original file line number Diff line number Diff line change @@ -38,14 +38,12 @@ function M.show(mode)
38
38
M .view :update ()
39
39
end
40
40
41
- --- @param opts ? { mode ?: string }
42
- function M .create (opts )
41
+ function M .create ()
43
42
local self = setmetatable ({}, { __index = setmetatable (M , { __index = Float }) })
44
43
--- @cast self LazyView
45
44
Float .init (self )
46
45
47
46
require (" lazy.view.colors" ).setup ()
48
- opts = opts or {}
49
47
50
48
self .state = vim .deepcopy (default_state )
51
49
You can’t perform that action at this time.
0 commit comments