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

Allow clicking in focused main view to go to staging

Only works if a file is selected.
This commit is contained in:
Stefan Haller
2025-03-26 12:39:39 +01:00
parent acfa024915
commit fbb8b2e17e
7 changed files with 70 additions and 9 deletions

View File

@ -19,6 +19,10 @@ func (self *baseController) GetOnClick() func() error {
return nil
}
func (self *baseController) GetOnClickFocusedMainView() func(mainViewName string, clickedLineIdx int) error {
return nil
}
func (self *baseController) GetOnRenderToMain() func() {
return nil
}