summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-04-20 18:08:17 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-04-20 18:08:17 +0200
commitc5936bd12b5329678498fbfddd9eacfa2039c2b0 (patch)
treeb3f4ede97e68ddb537996850db4099751c3a055b
parent9540f537702ca8779bf2163edc728d162fb6216b (diff)
downloadqutebrowser-c5936bd12b5329678498fbfddd9eacfa2039c2b0.tar.gz
qutebrowser-c5936bd12b5329678498fbfddd9eacfa2039c2b0.zip
Regenerate docs
-rw-r--r--doc/help/settings.asciidoc37
1 files changed, 35 insertions, 2 deletions
diff --git a/doc/help/settings.asciidoc b/doc/help/settings.asciidoc
index 3828c1257..4a696bc5e 100644
--- a/doc/help/settings.asciidoc
+++ b/doc/help/settings.asciidoc
@@ -259,6 +259,7 @@
|<<scrolling.smooth,scrolling.smooth>>|Enable smooth scrolling for web pages.
|<<search.ignore_case,search.ignore_case>>|When to find text on a page case-insensitively.
|<<search.incremental,search.incremental>>|Find text on a page incrementally, renewing the search for each typed character.
+|<<search.wrap,search.wrap>>|Wrap around at the top and bottom of the page when advancing through text matches using `:search-next` and `:search-prev`.
|<<session.default_name,session.default_name>>|Name of the session to save by default.
|<<session.lazy_restore,session.lazy_restore>>|Load a restored tab as soon as it takes focus.
|<<spellcheck.languages,spellcheck.languages>>|Languages to use for spell checking.
@@ -2288,6 +2289,8 @@ Default: +pass:[ask]+
=== content.unknown_url_scheme_policy
How navigation requests to URLs with unknown schemes are handled.
+This setting supports URL patterns.
+
Type: <<types,String>>
Valid values:
@@ -3228,6 +3231,16 @@ Type: <<types,Bool>>
Default: +pass:[true]+
+[[search.wrap]]
+=== search.wrap
+Wrap around at the top and bottom of the page when advancing through text matches using `:search-next` and `:search-prev`.
+
+Type: <<types,Bool>>
+
+Default: +pass:[true]+
+
+On QtWebEngine, this setting requires Qt 5.14 or newer.
+
[[session.default_name]]
=== session.default_name
Name of the session to save by default.
@@ -3773,8 +3786,28 @@ Default: +pass:[false]+
[[url.searchengines]]
=== url.searchengines
Search engines which can be used via the address bar.
-Maps a search engine name (such as `DEFAULT`, or `ddg`) to a URL with a `{}` placeholder. The placeholder will be replaced by the search term, use `{{` and `}}` for literal `{`/`}` signs.
-The search engine named `DEFAULT` is used when `url.auto_search` is turned on and something else than a URL was entered to be opened. Other search engines can be used by prepending the search engine name to the search term, e.g. `:open google qutebrowser`.
+
+Maps a search engine name (such as `DEFAULT`, or `ddg`) to a URL with a
+`{}` placeholder. The placeholder will be replaced by the search term, use
+`{{` and `}}` for literal `{`/`}` braces.
+
+The following further placeholds are defined to configure how special
+characters in the search terms are replaced by safe characters (called
+'quoting'):
+
+* `{}` and `{semiquoted}` quote everything except slashes; this is the most
+ sensible choice for almost all search engines (for the search term
+ `slash/and&amp` this placeholder expands to `slash/and%26amp`).
+* `{quoted}` quotes all characters (for `slash/and&amp` this placeholder
+ expands to `slash%2Fand%26amp`).
+* `{unquoted}` quotes nothing (for `slash/and&amp` this placeholder
+ expands to `slash/and&amp`).
+
+The search engine named `DEFAULT` is used when `url.auto_search` is turned
+on and something else than a URL was entered to be opened. Other search
+engines can be used by prepending the search engine name to the search
+term, e.g. `:open google qutebrowser`.
+
Type: <<types,Dict>>