fix form key bindings
This commit is contained in:
parent
6b7fad3e49
commit
6821372fc7
2 changed files with 4 additions and 2 deletions
|
@ -23,7 +23,8 @@ const KeyMapFields = [
|
|||
['tabs.prev?{"count":1}', 'Select prev Tab'],
|
||||
['tabs.first', 'Select first 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.duplicate', 'Dupplicate a tab'],
|
||||
], [
|
||||
|
|
|
@ -83,7 +83,8 @@ export default {
|
|||
'tabs.prev?{"count":1}': 'K',
|
||||
'tabs.first': 'g0',
|
||||
'tabs.last': 'g$',
|
||||
'tabs.reload?{"cache":true}': 'r',
|
||||
'tabs.reload?{"cache":false}': 'r',
|
||||
'tabs.reload?{"cache":true}': 'R',
|
||||
'tabs.pin.toggle': 'zp',
|
||||
'tabs.duplicate': 'zd',
|
||||
|
||||
|
|
Reference in a new issue