From 99955b3723fb547bb757b1d8d5e04c6fa2f91c90 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 3 Dec 2019 11:36:31 +0100 Subject: [PATCH] Add deepl translation quicksearch to qutebrowser Added deepl translation search engine with dt (deepl-translate). Moved google translation to gt (google-translate) to correspond for both engines. --- .config/qutebrowser/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index df6f897..baec09f 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -135,10 +135,11 @@ config.bind(leader + "VV", "config-source") c.url.searchengines = { "DEFAULT": "https://duckduckgo.com/?q={}", "d": "https://www.dict.cc/?s={}", + "gt": "https://translate.google.com/#auto/de/{}", + "dt": "https://www.deepl.com/translator#en/de/{}", "g": "https://www.google.com/search?q={}", "r": "https://old.reddit.com/r/{}", "w": "https://en.wikipedia.org/w/index.php?search={}", - "gt": "https://translate.google.com/#auto/de/{}", "gh": "https://github.com/search?q={}", "al": "https://wiki.archlinux.org/index.php/{}", "aur": "https://aur.archlinux.org/packages/?K={}",