Add TAB_LAST operation
This commit is contained in:
parent
d0df1a05a1
commit
ef98e196ab
4 changed files with 12 additions and 9 deletions
|
@ -28,7 +28,8 @@ export default {
|
|||
"u": { "type": "tabs.reopen" },
|
||||
"K": { "type": "tabs.prev", "count": 1 },
|
||||
"J": { "type": "tabs.next", "count": 1 },
|
||||
"g0": { "type": "tabs.first"},
|
||||
"g0": { "type": "tabs.first" },
|
||||
"g$": { "type": "tabs.last" },
|
||||
"r": { "type": "tabs.reload", "cache": false },
|
||||
"R": { "type": "tabs.reload", "cache": true },
|
||||
"zi": { "type": "zoom.in" },
|
||||
|
|
|
@ -37,6 +37,7 @@ export default {
|
|||
TAB_PREV: 'tabs.prev',
|
||||
TAB_NEXT: 'tabs.next',
|
||||
TAB_FIRST: 'tabs.first',
|
||||
TAB_LAST: 'tabs.last',
|
||||
TAB_RELOAD: 'tabs.reload',
|
||||
|
||||
// Zooms
|
||||
|
|
Reference in a new issue