From 5a9028e50d8991777c799b2806f48064c97fcedc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= <henrik@tjaders.com> Date: Tue, 23 Jan 2018 10:52:29 +0100 Subject: [PATCH] Changed to startpage search --- .config/qutebrowser/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index ddf9e08..69c079f 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -55,7 +55,7 @@ c.tabs.show_switching_delay = 1000 # used by prepending the search engine name to the search term, e.g. # `:open google qutebrowser`. # Type: Dict -c.url.searchengines = {'DEFAULT': 'https://duckduckgo.com/?q={}'} +c.url.searchengines = {'DEFAULT': 'https://startpage.com/do/search?query={}'} # Aliases for commands. The keys of the given dictionary are the # aliases, while the values are the commands they map to. @@ -77,5 +77,5 @@ config.bind('<ctrl+p>', 'tab-prev') config.bind('Ctrl-b', 'set-cmd-text -s :quickmark-load') config.bind('b', 'set-cmd-text -s :buffer') -config.bind('J', 'scroll-page 0 1') -config.bind('K', 'scroll-page 0 -1') +config.bind('J', 'tab-next') +config.bind('K', 'tab-prev') -- GitLab