From: Michael Orlitzky Date: Mon, 2 Oct 2023 19:56:23 +0000 (-0400) Subject: ui: open search results in a new tab X-Git-Url: http://gitweb.michael.orlitzky.com/?p=firefox-user-prefs.git;a=commitdiff_plain;h=aed5c816439f00a3ab2a8ff752dda6a7013095c6 ui: open search results in a new tab --- diff --git a/ui b/ui index 5a33a5e..4d5e63c 100644 --- a/ui +++ b/ui @@ -74,3 +74,21 @@ user_pref("permissions.default.shortcuts", 2); * */ user_pref("browser.link.open_newwindow.restriction", 0); + + +/* Open search results (from the search bar) in a new tab. + * + * If you're reading a page and want to (say) Ctrl-k to the search bar + * to look up a word, then you probably don't want the search results + * to overwrite the page you're in the middle of reading. This is the + * safe choice in any case. + * + * This setting does not affect searches from within the URL bar. + * + * References: + * + * 1. https://support.mozilla.org/en-US/questions/954276 + * 2. https://support.mozilla.org/en-US/questions/1309754 + * + */ +user_pref("browser.search.openintab", true);