This commit is contained in:
Gustavo Chain 2020-02-13 18:50:16 +01:00
parent f982b9f277
commit 252640aba3
No known key found for this signature in database
GPG Key ID: DA7C1746DC118A46

View File

@ -28,6 +28,7 @@ func New() (*UI, error) {
}
gui.SetKeybinding("", gocui.KeyCtrlC, gocui.ModNone, quit)
gui.SetKeybinding("", 'q', gocui.ModNone, quit)
return &UI{gui: gui}, nil
}