summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-04-04 13:15:56 +0200
committerFlorian Bruhin <me@the-compiler.org>2021-04-04 13:15:56 +0200
commita8d5ce13e8dd3e996d839d3bb80d2f391ff37100 (patch)
treefe3dbe3c2f06e7456d22d883cf41ad278b8b0d74 /doc
parented45c7fdc59ac376dc4b9a51811760aaabbd8ad8 (diff)
downloadqutebrowser-a8d5ce13e8dd3e996d839d3bb80d2f391ff37100.tar.gz
qutebrowser-a8d5ce13e8dd3e996d839d3bb80d2f391ff37100.zip
Add URL pattern support for :config-unset
See #5856
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.asciidoc3
-rw-r--r--doc/help/commands.asciidoc3
2 files changed, 5 insertions, 1 deletions
diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc
index 6e03aa68b..d1708fd90 100644
--- a/doc/changelog.asciidoc
+++ b/doc/changelog.asciidoc
@@ -105,6 +105,9 @@ Changed
- The default binding for `T` (`:tab-focus`) got changed so that it fills the
command line with `:tab-focus` if used without a count (instead of being
equivalent to `:tab-next` in that case).
+- The `:config-unset` command now understands the `--pattern` (`-u`) flag to
+ unset options customized for a given URL pattern (such as after answering a
+ prompt with "always"/"never").
Fixed
~~~~~
diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc
index 8eca20caf..d8a6e761c 100644
--- a/doc/help/commands.asciidoc
+++ b/doc/help/commands.asciidoc
@@ -381,7 +381,7 @@ Read a config.py file.
[[config-unset]]
=== config-unset
-Syntax: +:config-unset [*--temp*] 'option'+
+Syntax: +:config-unset [*--pattern* 'pattern'] [*--temp*] 'option'+
Unset an option.
@@ -391,6 +391,7 @@ This sets an option back to its default and removes it from autoconfig.yml.
* +'option'+: The name of the option.
==== optional arguments
+* +*-u*+, +*--pattern*+: The URL pattern to use.
* +*-t*+, +*--temp*+: Set value temporarily until qutebrowser is closed.
[[config-write-py]]