control-q instead of q for exitting apps + grid column override colors

This commit is contained in:
kepler155c@gmail.com
2019-07-02 14:11:33 -04:00
parent 1dcb6d67b7
commit 6ba458646f
8 changed files with 28 additions and 12 deletions

View File

@@ -47,7 +47,7 @@ local Browser = UI.Page {
{ text = 'Pastebin put p', event = 'pastebin', flags = FILE },
{ text = 'Shell s', event = 'shell' },
{ spacer = true },
{ text = 'Quit q', event = 'quit' },
{ text = 'Quit ^q', event = 'quit' },
} },
{ text = 'Edit', dropdown = {
{ text = 'Cut ^x', event = 'cut' },
@@ -140,7 +140,7 @@ local Browser = UI.Page {
},
},
accelerators = {
q = 'quit',
[ 'control-q' ] = 'quit',
c = 'cedit',
e = 'edit',
s = 'shell',