Merge pull request #198 from kleschenko/patch-1
Add vimperator-like keybindings for next and previous tabs
This commit is contained in:
commit
b11a098d7c
1 changed files with 2 additions and 0 deletions
|
@ -27,6 +27,8 @@ export default {
|
||||||
"u": { "type": "tabs.reopen" },
|
"u": { "type": "tabs.reopen" },
|
||||||
"K": { "type": "tabs.prev", "count": 1 },
|
"K": { "type": "tabs.prev", "count": 1 },
|
||||||
"J": { "type": "tabs.next", "count": 1 },
|
"J": { "type": "tabs.next", "count": 1 },
|
||||||
|
"gT": { "type": "tabs.prev", "count": 1 },
|
||||||
|
"gt": { "type": "tabs.next", "count": 1 },
|
||||||
"g0": { "type": "tabs.first" },
|
"g0": { "type": "tabs.first" },
|
||||||
"g$": { "type": "tabs.last" },
|
"g$": { "type": "tabs.last" },
|
||||||
"<C-6>": { "type": "tabs.prevsel" },
|
"<C-6>": { "type": "tabs.prevsel" },
|
||||||
|
|
Reference in a new issue