qutebrowser: Add alt-<hjkl> bindings to command mode

This mimics my bindings for Helm
master
Pierre Neidhardt 2017-10-22 09:24:01 +01:00
parent 4def83f21e
commit eb16e8f4e6
1 changed files with 4 additions and 0 deletions

View File

@ -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('<alt-h>', 'completion-item-focus prev-category', mode='command')
config.bind('<alt-l>', 'completion-item-focus next-category', mode='command')
config.bind('<alt-j>', 'completion-item-focus next', mode='command')
config.bind('<alt-k>', 'completion-item-focus prev', mode='command')
## Uncomment this to still load settings configured via autoconfig.yml
# config.load_autoconfig()