mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-08 04:04:22 +02:00
edec116ceb
Add search history for filterable and searchable views.
74 lines
1.6 KiB
Go
74 lines
1.6 KiB
Go
package controllers
|
|
|
|
import (
|
|
"github.com/jesseduffield/gocui"
|
|
"github.com/jesseduffield/lazygit/pkg/gui/types"
|
|
)
|
|
|
|
type SearchPromptController struct {
|
|
baseController
|
|
c *ControllerCommon
|
|
}
|
|
|
|
var _ types.IController = &SearchPromptController{}
|
|
|
|
func NewSearchPromptController(
|
|
common *ControllerCommon,
|
|
) *SearchPromptController {
|
|
return &SearchPromptController{
|
|
baseController: baseController{},
|
|
c: common,
|
|
}
|
|
}
|
|
|
|
func (self *SearchPromptController) GetKeybindings(opts types.KeybindingsOpts) []*types.Binding {
|
|
return []*types.Binding{
|
|
{
|
|
Key: opts.GetKey(opts.Config.Universal.Confirm),
|
|
Modifier: gocui.ModNone,
|
|
Handler: self.confirm,
|
|
},
|
|
{
|
|
Key: opts.GetKey(opts.Config.Universal.Return),
|
|
Modifier: gocui.ModNone,
|
|
Handler: self.cancel,
|
|
},
|
|
{
|
|
Key: opts.GetKey(opts.Config.Universal.PrevItem),
|
|
Modifier: gocui.ModNone,
|
|
Handler: self.prevHistory,
|
|
},
|
|
{
|
|
Key: opts.GetKey(opts.Config.Universal.NextItem),
|
|
Modifier: gocui.ModNone,
|
|
Handler: self.nextHistory,
|
|
},
|
|
}
|
|
}
|
|
|
|
func (self *SearchPromptController) Context() types.Context {
|
|
return self.context()
|
|
}
|
|
|
|
func (self *SearchPromptController) context() types.Context {
|
|
return self.c.Contexts().Search
|
|
}
|
|
|
|
func (self *SearchPromptController) confirm() error {
|
|
return self.c.Helpers().Search.Confirm()
|
|
}
|
|
|
|
func (self *SearchPromptController) cancel() error {
|
|
return self.c.Helpers().Search.CancelPrompt()
|
|
}
|
|
|
|
func (self *SearchPromptController) prevHistory() error {
|
|
self.c.Helpers().Search.ScrollHistory(1)
|
|
return nil
|
|
}
|
|
|
|
func (self *SearchPromptController) nextHistory() error {
|
|
self.c.Helpers().Search.ScrollHistory(-1)
|
|
return nil
|
|
}
|