summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammed Anas <triallax@tutanota.com>2022-06-16 23:10:15 +0300
committerFlorian Bruhin <me@the-compiler.org>2022-06-17 11:45:43 +0200
commit1b7bd7de6eb29fefdde8dccc34386642e4572fb2 (patch)
tree5ba5fca53141cd976a699e80ce4d140c1e49d192
parent641071814ef1a54f435f6d88f4fffcb47a3d6b18 (diff)
downloadqutebrowser-1b7bd7de6eb29fefdde8dccc34386642e4572fb2.tar.gz
qutebrowser-1b7bd7de6eb29fefdde8dccc34386642e4572fb2.zip
Remove repeated item in list
(cherry picked from commit db288550ac2390d100540791121f3f391eee75fc)
-rw-r--r--doc/help/commands.asciidoc2
-rw-r--r--qutebrowser/commands/__init__.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc
index 6003c0f1f..445d46d4b 100644
--- a/doc/help/commands.asciidoc
+++ b/doc/help/commands.asciidoc
@@ -15,7 +15,7 @@ For command arguments, there are also some variables you can use:
- `{url}` expands to the URL of the current page
- `{url:pretty}` expands to the URL in decoded format
- `{url:host}`, `{url:domain}`, `{url:auth}`, `{url:scheme}`, `{url:username}`,
- `{url:password}`, `{url:host}`, `{url:port}`, `{url:path}` and `{url:query}`
+ `{url:password}`, `{url:port}`, `{url:path}` and `{url:query}`
expand to the respective parts of the current URL
- `{title}` expands to the current page's title
- `{clipboard}` expands to the clipboard contents
diff --git a/qutebrowser/commands/__init__.py b/qutebrowser/commands/__init__.py
index 4a4edc53b..2d196ab49 100644
--- a/qutebrowser/commands/__init__.py
+++ b/qutebrowser/commands/__init__.py
@@ -27,7 +27,7 @@ For command arguments, there are also some variables you can use:
- `{url}` expands to the URL of the current page
- `{url:pretty}` expands to the URL in decoded format
- `{url:host}`, `{url:domain}`, `{url:auth}`, `{url:scheme}`, `{url:username}`,
- `{url:password}`, `{url:host}`, `{url:port}`, `{url:path}` and `{url:query}`
+ `{url:password}`, `{url:port}`, `{url:path}` and `{url:query}`
expand to the respective parts of the current URL
- `{title}` expands to the current page's title
- `{clipboard}` expands to the clipboard contents