From eb16e8f4e64a2ad7e831f8223fe3465b8029ca3f Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Sun, 22 Oct 2017 09:24:01 +0100 Subject: [PATCH] qutebrowser: Add alt- bindings to command mode This mimics my bindings for Helm --- .config/qutebrowser/config.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index f4803bfc..8800d3d6 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -57,6 +57,10 @@ config.bind('pp', 'open -- {primary}') config.bind('pP', 'open -- {clipboard}') config.bind('Pp', 'open -t -- {primary}') config.bind('PP', 'open -t -- {clipboard}') +config.bind('', 'completion-item-focus prev-category', mode='command') +config.bind('', 'completion-item-focus next-category', mode='command') +config.bind('', 'completion-item-focus next', mode='command') +config.bind('', 'completion-item-focus prev', mode='command') ## Uncomment this to still load settings configured via autoconfig.yml # config.load_autoconfig()