1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-12-01 22:52:01 +02:00

standardise naming

This commit is contained in:
Jesse Duffield
2022-01-30 10:23:39 +11:00
parent 77d0732fa8
commit 2692637fbe
16 changed files with 84 additions and 84 deletions

View File

@@ -126,7 +126,7 @@ func (gui *Gui) handleOpenOldCommitFile() error {
return nil
}
return gui.fileHelper.OpenFile(node.GetPath())
return gui.filesHelper.OpenFile(node.GetPath())
}
func (gui *Gui) handleEditCommitFile() error {
@@ -139,7 +139,7 @@ func (gui *Gui) handleEditCommitFile() error {
return gui.c.ErrorMsg(gui.c.Tr.ErrCannotEditDirectory)
}
return gui.fileHelper.EditFile(node.GetPath())
return gui.filesHelper.EditFile(node.GetPath())
}
func (gui *Gui) handleToggleFileForPatch() error {