1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-31 14:24:25 +03:00

shorten name

This commit is contained in:
Jesse Duffield
2022-01-08 14:10:01 +11:00
parent c9a0cc6b30
commit 364c5db19c
37 changed files with 207 additions and 207 deletions

View File

@ -68,9 +68,9 @@ type Repo string
// Gui wraps the gocui Gui object which handles rendering and events
type Gui struct {
*common.Common
g *gocui.Gui
GitCommand *commands.GitCommand
OSCommand *oscommands.OSCommand
g *gocui.Gui
Git *commands.GitCommand
OSCommand *oscommands.OSCommand
// this is the state of the GUI for the current repo
State *guiState
@ -471,7 +471,7 @@ func NewGui(
gui.OSCommand = osCommand
var err error
gui.GitCommand, err = commands.NewGitCommand(
gui.Git, err = commands.NewGitCommand(
cmn,
osCommand,
gitConfig,