diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 007b86fd9..a17ac2031 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -67,6 +67,7 @@ Changed - Completions for `:help` and `:bind` now also show hidden commands - The `:buffer` completion now also filters using the first column (id). - `:undo` has been improved to reopen tabs at the position they were closed. +- `:navigate` now takes a count for `up`/`increment`/`decrement`. Deprecated ~~~~~~~~~~ diff --git a/README.asciidoc b/README.asciidoc index 9d4b8d986..420c5cc21 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -183,6 +183,7 @@ Contributors, sorted by the number of commits in descending order: * skinnay * Zach-Button * Tomasz Kramkowski +* Peter Rice * Ismail S * Halfwit * David Vogt diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc index b6b8ac8d9..1b93a2d65 100644 --- a/doc/help/commands.asciidoc +++ b/doc/help/commands.asciidoc @@ -484,6 +484,7 @@ This tries to automatically click on typical _Previous Page_ or _Next Page_ link ==== count For `increment` and `decrement`, the number to change the URL by. For `up`, the number of levels to go up in the URL. + [[open]] === open Syntax: +:open [*--implicit*] [*--bg*] [*--tab*] [*--window*] ['url']+ diff --git a/qutebrowser/browser/commands.py b/qutebrowser/browser/commands.py index 03bf0a3d0..e13651b23 100644 --- a/qutebrowser/browser/commands.py +++ b/qutebrowser/browser/commands.py @@ -505,8 +505,8 @@ class CommandDispatcher: tab: Open in a new tab. bg: Open in a background tab. window: Open in a new window. - count: How much to increment or decrement the URL by, or number of - levels to go up in the current URL. + count: For `increment` and `decrement`, the number to change the URL + by. For `up`, the number of levels to go up in the URL. """ # save the pre-jump position in the special ' mark self.set_mark("'")