summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2022-06-14 10:12:21 +0200
committerFlorian Bruhin <me@the-compiler.org>2022-06-14 10:23:15 +0200
commitf2ee683a0877c7351d63687f04bd01f9ddbdfd25 (patch)
treefea1690bdd180928d648d656a0cd8bf7e24c536f
parent8137f2a6d90e30643ad3bcf0c2c182c9a48012eb (diff)
downloadqutebrowser-f2ee683a0877c7351d63687f04bd01f9ddbdfd25.tar.gz
qutebrowser-f2ee683a0877c7351d63687f04bd01f9ddbdfd25.zip
Update docs
-rw-r--r--doc/changelog.asciidoc10
-rw-r--r--doc/help/settings.asciidoc11
2 files changed, 19 insertions, 2 deletions
diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc
index 62835e412..36ff49e51 100644
--- a/doc/changelog.asciidoc
+++ b/doc/changelog.asciidoc
@@ -67,14 +67,20 @@ Changed
currently focused element (`focused`).
- The `:click-element` command now can select the first found element via
`--select-first`.
-- The `statusbar.widgets` setting now supports a `clock` option to show the
- current time.
+- New `search.wrap_messages` setting, making it possible to disable search
+ wrapping messages.
+- New widgets for `statusbar.widgets`:
+ * `clock`, showing the current time
+ * `search_match`, showing the current match and total count when finding text
+ on a page
Fixed
~~~~~
- When the devtools are clicked but `input.insert_mode.auto_enter` is set to
`false`, insert mode now isn't entered anymore.
+- The search wrapping messages are now correctly displayed in (hopefully) all
+ cases with QtWebEngine.
[[v2.5.2]]
v2.5.2 (unreleased)
diff --git a/doc/help/settings.asciidoc b/doc/help/settings.asciidoc
index 344879b4e..b16fe2a06 100644
--- a/doc/help/settings.asciidoc
+++ b/doc/help/settings.asciidoc
@@ -303,6 +303,7 @@
|<<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`.
+|<<search.wrap_messages,search.wrap_messages>>|Display messages when advancing through text matches at the top and bottom of the page, e.g. `Search hit TOP`.
|<<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.
@@ -4002,6 +4003,14 @@ Type: <<types,Bool>>
Default: +pass:[true]+
+[[search.wrap_messages]]
+=== search.wrap_messages
+Display messages when advancing through text matches at the top and bottom of the page, e.g. `Search hit TOP`.
+
+Type: <<types,Bool>>
+
+Default: +pass:[true]+
+
[[session.default_name]]
=== session.default_name
Name of the session to save by default.
@@ -4128,6 +4137,7 @@ Valid values:
* +scroll+: Percentage of the current page position like `10%`.
* +scroll_raw+: Raw percentage of the current page position like `10`.
* +history+: Display an arrow when possible to go back/forward in history.
+ * +search_match+: A match count when searching, e.g. `Match [2/10]`.
* +tabs+: Current active tab, e.g. `2`.
* +keypress+: Display pressed keys when composing a vi command.
* +progress+: Progress bar for the current page loading.
@@ -4137,6 +4147,7 @@ Valid values:
Default:
- +pass:[keypress]+
+- +pass:[search_match]+
- +pass:[url]+
- +pass:[scroll]+
- +pass:[history]+