control-q instead of q for exitting apps

This commit is contained in:
kepler155c@gmail.com
2019-07-02 14:12:41 -04:00
parent 6fa7779d7d
commit ed99703fda
15 changed files with 18 additions and 52 deletions

View File

@@ -189,7 +189,7 @@ local appPage = UI.Page {
},
notification = UI.Notification(),
accelerators = {
q = 'back',
[ 'control-q' ] = 'back',
backspace = 'back',
},
}
@@ -307,7 +307,7 @@ local categoryPage = UI.Page {
statusBar = UI.StatusBar(),
accelerators = {
l = 'lua',
q = 'quit',
[ 'control-q' ] = 'quit',
},
}