1
0
mirror of https://github.com/kepler155c/opus synced 2025-10-21 10:47:40 +00:00

safe digging

This commit is contained in:
kepler155c@gmail.com
2019-01-13 13:24:37 -05:00
parent 9edb4e7d5b
commit eabfde64e9
2 changed files with 33 additions and 7 deletions

View File

@@ -135,6 +135,7 @@ local Browser = UI.Page {
},
accelerators = {
q = 'quit',
c = 'cedit',
e = 'edit',
s = 'shell',
r = 'refresh',
@@ -341,6 +342,9 @@ function Browser:eventHandler(event)
elseif event.type == 'edit' and file then
self:run('edit', file.name)
elseif event.type == 'cedit' and file then
self:run('cedit', file.name)
elseif event.type == 'shell' then
self:run('sys/apps/shell')