mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-02 09:21:40 +02:00
43 lines
917 B
Go
43 lines
917 B
Go
package controllers
|
|
|
|
import (
|
|
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
)
|
|
|
|
type CommandLogController struct {
|
|
baseController
|
|
c *ControllerCommon
|
|
}
|
|
|
|
var _ types.IController = &CommandLogController{}
|
|
|
|
func NewCommandLogController(
|
|
common *ControllerCommon,
|
|
) *CommandLogController {
|
|
return &CommandLogController{
|
|
baseController: baseController{},
|
|
c: common,
|
|
}
|
|
}
|
|
|
|
func (self *CommandLogController) GetKeybindings(opts types.KeybindingsOpts) []*types.Binding {
|
|
bindings := []*types.Binding{}
|
|
|
|
return bindings
|
|
}
|
|
|
|
func (self *CommandLogController) GetOnFocusLost() func(types.OnFocusLostOpts) error {
|
|
return func(types.OnFocusLostOpts) error {
|
|
self.c.Views().Extras.Autoscroll = true
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (self *CommandLogController) Context() types.Context {
|
|
return self.context()
|
|
}
|
|
|
|
func (self *CommandLogController) context() types.Context {
|
|
return self.c.Contexts().CommandLog
|
|
}
|