mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-02-25 18:55:28 -06:00
controller for viewing sub commits
This commit is contained in:
@@ -59,7 +59,6 @@ type IListContext interface {
|
||||
OnSearchSelect(selectedLineIdx int) error
|
||||
FocusLine()
|
||||
|
||||
GetPanelState() IListPanelState
|
||||
GetViewTrait() IViewTrait
|
||||
}
|
||||
|
||||
|
||||
13
pkg/gui/types/modes.go
Normal file
13
pkg/gui/types/modes.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package types
|
||||
|
||||
import (
|
||||
"github.com/jesseduffield/lazygit/pkg/gui/modes/cherrypicking"
|
||||
"github.com/jesseduffield/lazygit/pkg/gui/modes/diffing"
|
||||
"github.com/jesseduffield/lazygit/pkg/gui/modes/filtering"
|
||||
)
|
||||
|
||||
type Modes struct {
|
||||
Filtering filtering.Filtering
|
||||
CherryPicking *cherrypicking.CherryPicking
|
||||
Diffing diffing.Diffing
|
||||
}
|
||||
Reference in New Issue
Block a user