From 278605cde6f9dc0ee98b0a02803854b0f1040162 Mon Sep 17 00:00:00 2001 From: Panagiotis Vasilopoulos Date: Wed, 28 Apr 2021 23:15:42 +0000 Subject: [PATCH] Browser: Add GitHub and Yandex to search engines --- Userland/Applications/Browser/Tab.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Userland/Applications/Browser/Tab.cpp b/Userland/Applications/Browser/Tab.cpp index ad4f280c22..c638ce1a86 100644 --- a/Userland/Applications/Browser/Tab.cpp +++ b/Userland/Applications/Browser/Tab.cpp @@ -433,7 +433,9 @@ Tab::Tab(Type type) // FIXME: Support adding custom search engines add_search_engine("Bing", "https://www.bing.com/search?q={}"); add_search_engine("DuckDuckGo", "https://duckduckgo.com/?q={}"); + add_search_engine("GitHub", "https://github.com/search=?q={}"); add_search_engine("Google", "https://google.com/search?q={}"); + add_search_engine("Yandex", "https://yandex.com/search/?text={}"); auto& debug_menu = m_menubar->add_menu("&Debug"); debug_menu.add_action(GUI::Action::create(