Update docs

This commit is contained in:
Florian Bruhin 2016-08-03 09:22:59 +02:00
parent 1fb4aa3532
commit 6b14fa49f2
3 changed files with 6 additions and 2 deletions

View File

@ -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
------

View File

@ -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

View File

@ -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.