From 54ae106789699a4f0f7e014a322363f79470a6b5 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 3 Aug 2016 17:24:26 +0200 Subject: [PATCH] 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. --- qutebrowser/config/configdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index 4584b242a..9eb932f21 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -1462,7 +1462,7 @@ KEY_DATA = collections.OrderedDict([ ('tab-move', ['gm']), ('tab-move -', ['gl']), ('tab-move +', ['gr']), - ('tab-focus', ['J', '']), + ('tab-next', ['J', '']), ('tab-prev', ['K', '']), ('tab-clone', ['gC']), ('reload', ['r', '']),