disable 'q' key from quitting repl mode

This commit is contained in:
raziman 2021-02-17 15:23:35 +08:00
parent 25cbf166ea
commit 07122d6564

View File

@ -642,13 +642,6 @@ func replPopup() {
}
}
switch event.Rune() {
case 'q':
gomu.pages.RemovePage(popupId)
gomu.popups.pop()
return nil
}
return event
})