mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-28 16:02:01 +03:00
Allow ignoring whitespace in diff in commits panel
This commit is contained in:
@ -118,7 +118,12 @@ func NewGitCommandAux(
|
|||||||
rebaseCommands := git_commands.NewRebaseCommands(gitCommon, commitCommands, workingTreeCommands)
|
rebaseCommands := git_commands.NewRebaseCommands(gitCommon, commitCommands, workingTreeCommands)
|
||||||
stashCommands := git_commands.NewStashCommands(gitCommon, fileLoader, workingTreeCommands)
|
stashCommands := git_commands.NewStashCommands(gitCommon, fileLoader, workingTreeCommands)
|
||||||
// TODO: have patch manager take workingTreeCommands in its entirety
|
// TODO: have patch manager take workingTreeCommands in its entirety
|
||||||
patchManager := patch.NewPatchManager(cmn.Log, workingTreeCommands.ApplyPatch, workingTreeCommands.ShowFileDiff)
|
patchManager := patch.NewPatchManager(cmn.Log, workingTreeCommands.ApplyPatch,
|
||||||
|
func(from string, to string, reverse bool, filename string, plain bool) (string, error) {
|
||||||
|
// TODO: make patch manager take Gui.IgnoreWhitespaceInDiffView into
|
||||||
|
// account. For now we just pass false.
|
||||||
|
return workingTreeCommands.ShowFileDiff(from, to, reverse, filename, plain, false)
|
||||||
|
})
|
||||||
patchCommands := git_commands.NewPatchCommands(gitCommon, rebaseCommands, commitCommands, statusCommands, stashCommands, patchManager)
|
patchCommands := git_commands.NewPatchCommands(gitCommon, rebaseCommands, commitCommands, statusCommands, stashCommands, patchManager)
|
||||||
bisectCommands := git_commands.NewBisectCommands(gitCommon)
|
bisectCommands := git_commands.NewBisectCommands(gitCommon)
|
||||||
|
|
||||||
|
@ -149,14 +149,19 @@ func (self *CommitCommands) AmendHeadCmdObj() oscommands.ICmdObj {
|
|||||||
return self.cmd.New("git commit --amend --no-edit --allow-empty")
|
return self.cmd.New("git commit --amend --no-edit --allow-empty")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *CommitCommands) ShowCmdObj(sha string, filterPath string) oscommands.ICmdObj {
|
func (self *CommitCommands) ShowCmdObj(sha string, filterPath string, ignoreWhitespace bool) oscommands.ICmdObj {
|
||||||
contextSize := self.UserConfig.Git.DiffContextSize
|
contextSize := self.UserConfig.Git.DiffContextSize
|
||||||
filterPathArg := ""
|
filterPathArg := ""
|
||||||
if filterPath != "" {
|
if filterPath != "" {
|
||||||
filterPathArg = fmt.Sprintf(" -- %s", self.cmd.Quote(filterPath))
|
filterPathArg = fmt.Sprintf(" -- %s", self.cmd.Quote(filterPath))
|
||||||
}
|
}
|
||||||
|
ignoreWhitespaceArg := ""
|
||||||
|
if ignoreWhitespace {
|
||||||
|
ignoreWhitespaceArg = " --ignore-all-space"
|
||||||
|
}
|
||||||
|
|
||||||
cmdStr := fmt.Sprintf("git show --submodule --color=%s --unified=%d --no-renames --stat -p %s%s", self.UserConfig.Git.Paging.ColorArg, contextSize, sha, filterPathArg)
|
cmdStr := fmt.Sprintf("git show --submodule --color=%s --unified=%d --no-renames --stat -p %s%s%s",
|
||||||
|
self.UserConfig.Git.Paging.ColorArg, contextSize, sha, ignoreWhitespaceArg, filterPathArg)
|
||||||
return self.cmd.New(cmdStr).DontLog()
|
return self.cmd.New(cmdStr).DontLog()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -177,30 +177,34 @@ func TestCommitCreateFixupCommit(t *testing.T) {
|
|||||||
|
|
||||||
func TestCommitShowCmdObj(t *testing.T) {
|
func TestCommitShowCmdObj(t *testing.T) {
|
||||||
type scenario struct {
|
type scenario struct {
|
||||||
testName string
|
testName string
|
||||||
filterPath string
|
filterPath string
|
||||||
contextSize int
|
contextSize int
|
||||||
expected string
|
ignoreWhitespace bool
|
||||||
|
expected string
|
||||||
}
|
}
|
||||||
|
|
||||||
scenarios := []scenario{
|
scenarios := []scenario{
|
||||||
{
|
{
|
||||||
testName: "Default case without filter path",
|
testName: "Default case without filter path",
|
||||||
filterPath: "",
|
filterPath: "",
|
||||||
contextSize: 3,
|
contextSize: 3,
|
||||||
expected: "git show --submodule --color=always --unified=3 --no-renames --stat -p 1234567890",
|
ignoreWhitespace: false,
|
||||||
|
expected: "git show --submodule --color=always --unified=3 --no-renames --stat -p 1234567890",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
testName: "Default case with filter path",
|
testName: "Default case with filter path",
|
||||||
filterPath: "file.txt",
|
filterPath: "file.txt",
|
||||||
contextSize: 3,
|
contextSize: 3,
|
||||||
expected: `git show --submodule --color=always --unified=3 --no-renames --stat -p 1234567890 -- "file.txt"`,
|
ignoreWhitespace: true,
|
||||||
|
expected: `git show --submodule --color=always --unified=3 --no-renames --stat -p 1234567890 --ignore-all-space -- "file.txt"`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
testName: "Show diff with custom context size",
|
testName: "Show diff with custom context size",
|
||||||
filterPath: "",
|
filterPath: "",
|
||||||
contextSize: 77,
|
contextSize: 77,
|
||||||
expected: "git show --submodule --color=always --unified=77 --no-renames --stat -p 1234567890",
|
ignoreWhitespace: false,
|
||||||
|
expected: "git show --submodule --color=always --unified=77 --no-renames --stat -p 1234567890",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -212,7 +216,7 @@ func TestCommitShowCmdObj(t *testing.T) {
|
|||||||
|
|
||||||
instance := buildCommitCommands(commonDeps{userConfig: userConfig})
|
instance := buildCommitCommands(commonDeps{userConfig: userConfig})
|
||||||
|
|
||||||
cmdStr := instance.ShowCmdObj("1234567890", s.filterPath).ToString()
|
cmdStr := instance.ShowCmdObj("1234567890", s.filterPath, s.ignoreWhitespace).ToString()
|
||||||
assert.Equal(t, s.expected, cmdStr)
|
assert.Equal(t, s.expected, cmdStr)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -287,11 +287,15 @@ func (self *WorkingTreeCommands) SaveTemporaryPatch(patch string) (string, error
|
|||||||
|
|
||||||
// ShowFileDiff get the diff of specified from and to. Typically this will be used for a single commit so it'll be 123abc^..123abc
|
// ShowFileDiff get the diff of specified from and to. Typically this will be used for a single commit so it'll be 123abc^..123abc
|
||||||
// but when we're in diff mode it could be any 'from' to any 'to'. The reverse flag is also here thanks to diff mode.
|
// but when we're in diff mode it could be any 'from' to any 'to'. The reverse flag is also here thanks to diff mode.
|
||||||
func (self *WorkingTreeCommands) ShowFileDiff(from string, to string, reverse bool, fileName string, plain bool) (string, error) {
|
func (self *WorkingTreeCommands) ShowFileDiff(from string, to string, reverse bool, fileName string, plain bool,
|
||||||
return self.ShowFileDiffCmdObj(from, to, reverse, fileName, plain).RunWithOutput()
|
ignoreWhitespace bool,
|
||||||
|
) (string, error) {
|
||||||
|
return self.ShowFileDiffCmdObj(from, to, reverse, fileName, plain, ignoreWhitespace).RunWithOutput()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *WorkingTreeCommands) ShowFileDiffCmdObj(from string, to string, reverse bool, fileName string, plain bool) oscommands.ICmdObj {
|
func (self *WorkingTreeCommands) ShowFileDiffCmdObj(from string, to string, reverse bool, fileName string, plain bool,
|
||||||
|
ignoreWhitespace bool,
|
||||||
|
) oscommands.ICmdObj {
|
||||||
colorArg := self.UserConfig.Git.Paging.ColorArg
|
colorArg := self.UserConfig.Git.Paging.ColorArg
|
||||||
contextSize := self.UserConfig.Git.DiffContextSize
|
contextSize := self.UserConfig.Git.DiffContextSize
|
||||||
if plain {
|
if plain {
|
||||||
@ -303,11 +307,16 @@ func (self *WorkingTreeCommands) ShowFileDiffCmdObj(from string, to string, reve
|
|||||||
reverseFlag = " -R"
|
reverseFlag = " -R"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ignoreWhitespaceFlag := ""
|
||||||
|
if ignoreWhitespace {
|
||||||
|
ignoreWhitespaceFlag = " --ignore-all-space"
|
||||||
|
}
|
||||||
|
|
||||||
return self.cmd.
|
return self.cmd.
|
||||||
New(
|
New(
|
||||||
fmt.Sprintf(
|
fmt.Sprintf(
|
||||||
"git diff --submodule --no-ext-diff --unified=%d --no-renames --color=%s%s%s%s -- %s",
|
"git diff --submodule --no-ext-diff --unified=%d --no-renames --color=%s%s%s%s%s -- %s",
|
||||||
contextSize, colorArg, pad(from), pad(to), reverseFlag, self.cmd.Quote(fileName)),
|
contextSize, colorArg, pad(from), pad(to), reverseFlag, ignoreWhitespaceFlag, self.cmd.Quote(fileName)),
|
||||||
).
|
).
|
||||||
DontLog()
|
DontLog()
|
||||||
}
|
}
|
||||||
|
@ -323,38 +323,52 @@ func TestWorkingTreeDiff(t *testing.T) {
|
|||||||
|
|
||||||
func TestWorkingTreeShowFileDiff(t *testing.T) {
|
func TestWorkingTreeShowFileDiff(t *testing.T) {
|
||||||
type scenario struct {
|
type scenario struct {
|
||||||
testName string
|
testName string
|
||||||
from string
|
from string
|
||||||
to string
|
to string
|
||||||
reverse bool
|
reverse bool
|
||||||
plain bool
|
plain bool
|
||||||
contextSize int
|
ignoreWhitespace bool
|
||||||
runner *oscommands.FakeCmdObjRunner
|
contextSize int
|
||||||
|
runner *oscommands.FakeCmdObjRunner
|
||||||
}
|
}
|
||||||
|
|
||||||
const expectedResult = "pretend this is an actual git diff"
|
const expectedResult = "pretend this is an actual git diff"
|
||||||
|
|
||||||
scenarios := []scenario{
|
scenarios := []scenario{
|
||||||
{
|
{
|
||||||
testName: "Default case",
|
testName: "Default case",
|
||||||
from: "1234567890",
|
from: "1234567890",
|
||||||
to: "0987654321",
|
to: "0987654321",
|
||||||
reverse: false,
|
reverse: false,
|
||||||
plain: false,
|
plain: false,
|
||||||
contextSize: 3,
|
ignoreWhitespace: false,
|
||||||
|
contextSize: 3,
|
||||||
runner: oscommands.NewFakeRunner(t).
|
runner: oscommands.NewFakeRunner(t).
|
||||||
Expect(`git diff --submodule --no-ext-diff --unified=3 --no-renames --color=always 1234567890 0987654321 -- "test.txt"`, expectedResult, nil),
|
Expect(`git diff --submodule --no-ext-diff --unified=3 --no-renames --color=always 1234567890 0987654321 -- "test.txt"`, expectedResult, nil),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
testName: "Show diff with custom context size",
|
testName: "Show diff with custom context size",
|
||||||
from: "1234567890",
|
from: "1234567890",
|
||||||
to: "0987654321",
|
to: "0987654321",
|
||||||
reverse: false,
|
reverse: false,
|
||||||
plain: false,
|
plain: false,
|
||||||
contextSize: 123,
|
ignoreWhitespace: false,
|
||||||
|
contextSize: 123,
|
||||||
runner: oscommands.NewFakeRunner(t).
|
runner: oscommands.NewFakeRunner(t).
|
||||||
Expect(`git diff --submodule --no-ext-diff --unified=123 --no-renames --color=always 1234567890 0987654321 -- "test.txt"`, expectedResult, nil),
|
Expect(`git diff --submodule --no-ext-diff --unified=123 --no-renames --color=always 1234567890 0987654321 -- "test.txt"`, expectedResult, nil),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
testName: "Default case (ignore whitespace)",
|
||||||
|
from: "1234567890",
|
||||||
|
to: "0987654321",
|
||||||
|
reverse: false,
|
||||||
|
plain: false,
|
||||||
|
ignoreWhitespace: true,
|
||||||
|
contextSize: 3,
|
||||||
|
runner: oscommands.NewFakeRunner(t).
|
||||||
|
Expect(`git diff --submodule --no-ext-diff --unified=3 --no-renames --color=always 1234567890 0987654321 --ignore-all-space -- "test.txt"`, expectedResult, nil),
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, s := range scenarios {
|
for _, s := range scenarios {
|
||||||
@ -365,7 +379,7 @@ func TestWorkingTreeShowFileDiff(t *testing.T) {
|
|||||||
|
|
||||||
instance := buildWorkingTreeCommands(commonDeps{runner: s.runner, userConfig: userConfig})
|
instance := buildWorkingTreeCommands(commonDeps{runner: s.runner, userConfig: userConfig})
|
||||||
|
|
||||||
result, err := instance.ShowFileDiff(s.from, s.to, s.reverse, "test.txt", s.plain)
|
result, err := instance.ShowFileDiff(s.from, s.to, s.reverse, "test.txt", s.plain, s.ignoreWhitespace)
|
||||||
assert.NoError(t, err)
|
assert.NoError(t, err)
|
||||||
assert.Equal(t, expectedResult, result)
|
assert.Equal(t, expectedResult, result)
|
||||||
s.runner.CheckForMissingCalls()
|
s.runner.CheckForMissingCalls()
|
||||||
|
@ -15,7 +15,8 @@ func (gui *Gui) commitFilesRenderToMain() error {
|
|||||||
to := ref.RefName()
|
to := ref.RefName()
|
||||||
from, reverse := gui.State.Modes.Diffing.GetFromAndReverseArgsForDiff(ref.ParentRefName())
|
from, reverse := gui.State.Modes.Diffing.GetFromAndReverseArgsForDiff(ref.ParentRefName())
|
||||||
|
|
||||||
cmdObj := gui.git.WorkingTree.ShowFileDiffCmdObj(from, to, reverse, node.GetPath(), false)
|
cmdObj := gui.git.WorkingTree.ShowFileDiffCmdObj(from, to, reverse, node.GetPath(), false,
|
||||||
|
gui.IgnoreWhitespaceInDiffView)
|
||||||
task := types.NewRunPtyTask(cmdObj.GetCmd())
|
task := types.NewRunPtyTask(cmdObj.GetCmd())
|
||||||
|
|
||||||
pair := gui.c.MainViewPairs().Normal
|
pair := gui.c.MainViewPairs().Normal
|
||||||
|
@ -35,7 +35,8 @@ func (gui *Gui) branchCommitsRenderToMain() error {
|
|||||||
if commit == nil {
|
if commit == nil {
|
||||||
task = types.NewRenderStringTask(gui.c.Tr.NoCommitsThisBranch)
|
task = types.NewRenderStringTask(gui.c.Tr.NoCommitsThisBranch)
|
||||||
} else {
|
} else {
|
||||||
cmdObj := gui.git.Commit.ShowCmdObj(commit.Sha, gui.State.Modes.Filtering.GetPath())
|
cmdObj := gui.git.Commit.ShowCmdObj(commit.Sha, gui.State.Modes.Filtering.GetPath(),
|
||||||
|
gui.IgnoreWhitespaceInDiffView)
|
||||||
task = types.NewRunPtyTask(cmdObj.GetCmd())
|
task = types.NewRunPtyTask(cmdObj.GetCmd())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,6 +95,10 @@ func (gui *Gui) diffStr() string {
|
|||||||
output += " -R"
|
output += " -R"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if gui.IgnoreWhitespaceInDiffView {
|
||||||
|
output += " --ignore-all-space"
|
||||||
|
}
|
||||||
|
|
||||||
file := gui.currentlySelectedFilename()
|
file := gui.currentlySelectedFilename()
|
||||||
if file != "" {
|
if file != "" {
|
||||||
output += " -- " + file
|
output += " -- " + file
|
||||||
|
@ -8,7 +8,8 @@ func (gui *Gui) reflogCommitsRenderToMain() error {
|
|||||||
if commit == nil {
|
if commit == nil {
|
||||||
task = types.NewRenderStringTask("No reflog history")
|
task = types.NewRenderStringTask("No reflog history")
|
||||||
} else {
|
} else {
|
||||||
cmdObj := gui.git.Commit.ShowCmdObj(commit.Sha, gui.State.Modes.Filtering.GetPath())
|
cmdObj := gui.git.Commit.ShowCmdObj(commit.Sha, gui.State.Modes.Filtering.GetPath(),
|
||||||
|
gui.IgnoreWhitespaceInDiffView)
|
||||||
|
|
||||||
task = types.NewRunPtyTask(cmdObj.GetCmd())
|
task = types.NewRunPtyTask(cmdObj.GetCmd())
|
||||||
}
|
}
|
||||||
|
@ -658,7 +658,8 @@ func (gui *Gui) refreshPatchBuildingPanel(opts types.OnFocusOpts) error {
|
|||||||
ref := gui.State.Contexts.CommitFiles.CommitFileTreeViewModel.GetRef()
|
ref := gui.State.Contexts.CommitFiles.CommitFileTreeViewModel.GetRef()
|
||||||
to := ref.RefName()
|
to := ref.RefName()
|
||||||
from, reverse := gui.State.Modes.Diffing.GetFromAndReverseArgsForDiff(ref.ParentRefName())
|
from, reverse := gui.State.Modes.Diffing.GetFromAndReverseArgsForDiff(ref.ParentRefName())
|
||||||
diff, err := gui.git.WorkingTree.ShowFileDiff(from, to, reverse, path, true)
|
diff, err := gui.git.WorkingTree.ShowFileDiff(from, to, reverse, path, true,
|
||||||
|
gui.IgnoreWhitespaceInDiffView)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,8 @@ func (gui *Gui) subCommitsRenderToMain() error {
|
|||||||
if commit == nil {
|
if commit == nil {
|
||||||
task = types.NewRenderStringTask("No commits")
|
task = types.NewRenderStringTask("No commits")
|
||||||
} else {
|
} else {
|
||||||
cmdObj := gui.git.Commit.ShowCmdObj(commit.Sha, gui.State.Modes.Filtering.GetPath())
|
cmdObj := gui.git.Commit.ShowCmdObj(commit.Sha, gui.State.Modes.Filtering.GetPath(),
|
||||||
|
gui.IgnoreWhitespaceInDiffView)
|
||||||
|
|
||||||
task = types.NewRunPtyTask(cmdObj.GetCmd())
|
task = types.NewRunPtyTask(cmdObj.GetCmd())
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user