From 3ce48c4323f38d3b61a08e7e2add5543adabe5d7 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Thu, 7 Jan 2021 21:10:43 +0100 Subject: Added vim Goyo plugin, changed default browser to qutebrowser, Added keybinding to go to next/prev element of command completion in qutebrowser --- qutebrowser/config.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'qutebrowser') diff --git a/qutebrowser/config.py b/qutebrowser/config.py index ce83c37..6ab0895 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -30,7 +30,7 @@ c.fonts.hints = 'bold 11pt default_family' c.hints.chars = 'asdfghjkl;' -c.statusbar.show = 'in-mode' +# c.statusbar.show = 'in-mode' c.editor.command = [ '/usr/local/bin/st', '-e', @@ -39,8 +39,13 @@ c.editor.command = [ c.messages.timeout = 4000 -config.bind('v', 'hint links spawn /usr/bin/mpv {hint-url}') +config.bind(';v', 'hint links spawn /usr/bin/mpv {hint-url} ;;' + 'message-info "opening in video player"') +config.bind('', 'completion-item-focus next', 'command') +config.bind('', 'completion-item-focus prev', 'command') + +# c.content.proxy = 'socks://localhost:9050/' # base16-qutebrowser (https://github.com/theova/base16-qutebrowser) # Base16 qutebrowser template by theova -- cgit