diff options
author | Kostyantyn Leschenko <settlerko@gmail.com> | 2017-11-18 00:57:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-18 00:57:21 +0200 |
commit | f9889b7f2b634bfe5a540633d8952f4a6f900658 (patch) | |
tree | 6f9fb00008532ad0d4b517226d0cc28f1fb45bf2 | |
parent | 7e506f5f212ce57362bb644c2c2d7a9f763282cb (diff) |
Add vimperator-like keybindings for next and previous tabs
-rw-r--r-- | src/shared/default-settings.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/default-settings.js b/src/shared/default-settings.js index 608890b..e9c3d15 100644 --- a/src/shared/default-settings.js +++ b/src/shared/default-settings.js @@ -28,6 +28,8 @@ export default { "u": { "type": "tabs.reopen" }, "K": { "type": "tabs.prev", "count": 1 }, "J": { "type": "tabs.next", "count": 1 }, + "gT": { "type": "tabs.prev", "count": 1 }, + "gt": { "type": "tabs.next", "count": 1 }, "g0": { "type": "tabs.first" }, "g$": { "type": "tabs.last" }, "r": { "type": "tabs.reload", "cache": false }, |