default key config: Bind J to :tab-next again

This was originally added in #868, but since then we changed the default
binding for gt (for :buffers).

It also accidentally shadowed the T binding which should be bound to
:tab-focus. See #1753.
This commit is contained in:
Florian Bruhin 2016-08-03 17:24:26 +02:00
parent 23ce4561c8
commit 54ae106789

View File

@ -1462,7 +1462,7 @@ KEY_DATA = collections.OrderedDict([
('tab-move', ['gm']),
('tab-move -', ['gl']),
('tab-move +', ['gr']),
('tab-focus', ['J', '<Ctrl-PgDown>']),
('tab-next', ['J', '<Ctrl-PgDown>']),
('tab-prev', ['K', '<Ctrl-PgUp>']),
('tab-clone', ['gC']),
('reload', ['r', '<F5>']),