diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index cc0b17d80..332d9bc9a 100644 --- a/doc/changelog.asciidoc +++ b/doc/changelog.asciidoc @@ -24,6 +24,7 @@ Changed - Completion highlighting is now done differently (using QSyntaxHighlither), which should fix some highlighting corner-cases. - The `QtColor` config type now also understands colors like `rgb(...)`. +- `:yank` now has a `--quiet` option which causes it to not display a message. v1.5.1 (unreleased) ------------------- diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc index db4033012..eab0d6bba 100644 --- a/doc/help/commands.asciidoc +++ b/doc/help/commands.asciidoc @@ -1416,7 +1416,7 @@ Yank something to the clipboard or primary selection. ==== optional arguments * +*-s*+, +*--sel*+: Use the primary selection instead of the clipboard. * +*-k*+, +*--keep*+: Stay in visual mode after yanking the selection. -* +*-q*+, +*--quiet*+: Don't show information message. +* +*-q*+, +*--quiet*+: Don't show an information message. [[zoom]] === zoom diff --git a/qutebrowser/browser/commands.py b/qutebrowser/browser/commands.py index e747965a2..a0fc3a67b 100644 --- a/qutebrowser/browser/commands.py +++ b/qutebrowser/browser/commands.py @@ -831,7 +831,7 @@ class CommandDispatcher: sel: Use the primary selection instead of the clipboard. keep: Stay in visual mode after yanking the selection. - quiet: Don't show information message. + quiet: Don't show an information message. """ if what == 'title': s = self._tabbed_browser.widget.page_title(self._current_index())