diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 40a6b7b67..4217cad65 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -38,6 +38,8 @@ Changed - `:tab-move` now optionally takes an index for absolute moving. - Commands taking either an argument or a count (like `:zoom` or `:tab-focus`) now prefer the count instead of showing an error message. +- `:open` now has an `--implicit` argument to treat the opened tab as implicit + (i.e. to open it at the position it would be opened if it was a clicked link) v0.8.2 ------ diff --git a/README.asciidoc b/README.asciidoc index 65d7ac4dc..b1619bf52 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -149,8 +149,8 @@ Contributors, sorted by the number of commits in descending order: * Felix Van der Jeugt * Jakub Klinkovský * Martin Tournoij -* Raphael Pierzina * Marshall Lochbaum +* Raphael Pierzina * Joel Torstensson * Jan Verbeek * Patric Schmitz diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc index ab4479446..9835f1a3f 100644 --- a/doc/help/commands.asciidoc +++ b/doc/help/commands.asciidoc @@ -456,7 +456,7 @@ This tries to automatically click on typical _Previous Page_ or _Next Page_ link [[open]] === open -Syntax: +:open [*--bg*] [*--tab*] [*--window*] ['url']+ +Syntax: +:open [*--implicit*] [*--bg*] [*--tab*] [*--window*] ['url']+ Open a URL in the current/[count]th tab. @@ -464,6 +464,8 @@ Open a URL in the current/[count]th tab. * +'url'+: The URL to open. ==== optional arguments +* +*-i*+, +*--implicit*+: If opening a new tab, treat the tab as implicit (like clicking on a link). + * +*-b*+, +*--bg*+: Open in a new background tab. * +*-t*+, +*--tab*+: Open in a new tab. * +*-w*+, +*--window*+: Open in a new window.