From bc95e3c59bb869bb18bee41a362df44cbba5dd75 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sun, 25 Jul 2021 17:15:19 +0200 Subject: Updated qutebrowser, remapping gJ and gK for consistancy with J and K bindings --- config/qutebrowser/config.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'config') diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index f287524..db7c2da 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -79,6 +79,9 @@ config.bind('', 'completion-item-focus prev', 'command') config.bind('J', 'tab-prev', 'normal') config.bind('K', 'tab-next', 'normal') +config.bind('gJ', 'tab-move -', 'normal') +config.bind('gK', 'tab-move +', 'normal') + config.bind('', 'devtools', 'normal') config.bind('j', 'scroll-page 0 0.05', 'normal') -- cgit