mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-04-23 12:18:51 +02:00
Merge pull request #2447 from stefanhaller/cleanup-leftovers-from-2444
This commit is contained in:
commit
eeb9c02836
@ -49,15 +49,6 @@ func (self *GuiDriver) CurrentContext() types.Context {
|
|||||||
return self.gui.c.CurrentContext()
|
return self.gui.c.CurrentContext()
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *GuiDriver) ContextForView(viewName string) types.Context {
|
|
||||||
context, ok := self.gui.contextForView(viewName)
|
|
||||||
if !ok {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return context
|
|
||||||
}
|
|
||||||
|
|
||||||
func (self *GuiDriver) Fail(message string) {
|
func (self *GuiDriver) Fail(message string) {
|
||||||
self.gui.g.Close()
|
self.gui.g.Close()
|
||||||
// need to give the gui time to close
|
// need to give the gui time to close
|
||||||
|
@ -30,10 +30,6 @@ func (self *fakeGuiDriver) CurrentContext() types.Context {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *fakeGuiDriver) ContextForView(viewName string) types.Context {
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (self *fakeGuiDriver) Fail(message string) {
|
func (self *fakeGuiDriver) Fail(message string) {
|
||||||
self.failureMessage = message
|
self.failureMessage = message
|
||||||
}
|
}
|
||||||
|
@ -20,7 +20,6 @@ type GuiDriver interface {
|
|||||||
PressKey(string)
|
PressKey(string)
|
||||||
Keys() config.KeybindingConfig
|
Keys() config.KeybindingConfig
|
||||||
CurrentContext() types.Context
|
CurrentContext() types.Context
|
||||||
ContextForView(viewName string) types.Context
|
|
||||||
Fail(message string)
|
Fail(message string)
|
||||||
// These two log methods are for the sake of debugging while testing. There's no need to actually
|
// These two log methods are for the sake of debugging while testing. There's no need to actually
|
||||||
// commit any logging.
|
// commit any logging.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user