added ctrl-left to go to '/'...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2015-06-25 05:26:41 +03:00
parent c2d317246b
commit 2da348a0db

View File

@ -145,7 +145,10 @@ var BrowserPrototype = {
Up: 'prev!',
Backspace: 'Up',
Down: 'next!',
Left: 'pop',
Left: {
default: 'pop',
ctrl: 'update: "/"',
},
Right: 'push',
Home: 'select!: "first"',
@ -153,8 +156,6 @@ var BrowserPrototype = {
// XXX add page up and page down...
// XXX
// XXX ctrl-Left to go to root/base/home
// XXX
Enter: 'action',
Esc: 'close',