fix form key bindings

This commit is contained in:
Shin'ya Ueoka 2017-11-26 21:59:29 +09:00
parent 6b7fad3e49
commit 6821372fc7
2 changed files with 4 additions and 2 deletions

View file

@ -23,7 +23,8 @@ const KeyMapFields = [
['tabs.prev?{"count":1}', 'Select prev Tab'], ['tabs.prev?{"count":1}', 'Select prev Tab'],
['tabs.first', 'Select first tab'], ['tabs.first', 'Select first tab'],
['tabs.last', 'Select last tab'], ['tabs.last', 'Select last tab'],
['tabs.reload?{"cache":true}', 'Reload current tab'], ['tabs.reload?{"cache":false}', 'Reload current tab'],
['tabs.reload?{"cache":true}', 'Reload with no caches'],
['tabs.pin.toggle', 'Toggle pinned state'], ['tabs.pin.toggle', 'Toggle pinned state'],
['tabs.duplicate', 'Dupplicate a tab'], ['tabs.duplicate', 'Dupplicate a tab'],
], [ ], [

View file

@ -83,7 +83,8 @@ export default {
'tabs.prev?{"count":1}': 'K', 'tabs.prev?{"count":1}': 'K',
'tabs.first': 'g0', 'tabs.first': 'g0',
'tabs.last': 'g$', 'tabs.last': 'g$',
'tabs.reload?{"cache":true}': 'r', 'tabs.reload?{"cache":false}': 'r',
'tabs.reload?{"cache":true}': 'R',
'tabs.pin.toggle': 'zp', 'tabs.pin.toggle': 'zp',
'tabs.duplicate': 'zd', 'tabs.duplicate': 'zd',