Update docs

This commit is contained in:
Florian Bruhin 2016-08-07 11:09:16 +02:00
parent 88d3e86259
commit ef0b2e1488
3 changed files with 22 additions and 15 deletions

View File

@ -44,6 +44,14 @@ Changed
(i.e. to open it at the position it would be opened if it was a clicked link) (i.e. to open it at the position it would be opened if it was a clicked link)
- `:download-open` and `:prompt-open-download` now have an optional `cmdline` - `:download-open` and `:prompt-open-download` now have an optional `cmdline`
argument to pass a commandline to open the download with. argument to pass a commandline to open the download with.
- `:yank` now has a position argument to select what to yank instead of using
flags.
Removed
~~~~~~~
- The `:yank-selected` command got merged into `:yank` as `:yank selection`
and thus removed.
v0.8.3 (unreleased) v0.8.3 (unreleased)
------------------- -------------------

View File

@ -146,10 +146,10 @@ Contributors, sorted by the number of commits in descending order:
* Lamar Pavel * Lamar Pavel
* Bruno Oliveira * Bruno Oliveira
* Alexander Cogneau * Alexander Cogneau
* Marshall Lochbaum
* Felix Van der Jeugt * Felix Van der Jeugt
* Jakub Klinkovský * Jakub Klinkovský
* Martin Tournoij * Martin Tournoij
* Marshall Lochbaum
* Raphael Pierzina * Raphael Pierzina
* Joel Torstensson * Joel Torstensson
* Jan Verbeek * Jan Verbeek

View File

@ -66,8 +66,7 @@
|<<undo,undo>>|Re-open a closed tab (optionally skipping [count] closed tabs). |<<undo,undo>>|Re-open a closed tab (optionally skipping [count] closed tabs).
|<<view-source,view-source>>|Show the source of the current page. |<<view-source,view-source>>|Show the source of the current page.
|<<wq,wq>>|Save open pages and quit. |<<wq,wq>>|Save open pages and quit.
|<<yank,yank>>|Yank the current URL/title to the clipboard or primary selection. |<<yank,yank>>|Yank something to the clipboard or primary selection.
|<<yank-selected,yank-selected>>|Yank the selected text to the clipboard or primary selection.
|<<zoom,zoom>>|Set the zoom level for the current tab. |<<zoom,zoom>>|Set the zoom level for the current tab.
|<<zoom-in,zoom-in>>|Increase the zoom level for the current tab. |<<zoom-in,zoom-in>>|Increase the zoom level for the current tab.
|<<zoom-out,zoom-out>>|Decrease the zoom level for the current tab. |<<zoom-out,zoom-out>>|Decrease the zoom level for the current tab.
@ -853,25 +852,25 @@ Save open pages and quit.
[[yank]] [[yank]]
=== yank === yank
Syntax: +:yank [*--title*] [*--sel*] [*--domain*] [*--pretty*]+ Syntax: +:yank [*--sel*] [*--keep*] ['what']+
Yank the current URL/title to the clipboard or primary selection. Yank something to the clipboard or primary selection.
==== positional arguments
* +'what'+: What to yank.
- `url`: The current URL.
- `pretty-url`: The URL in pretty decoded form.
- `title`: The current page's title.
- `domain`: The current scheme, domain, and port number.
- `selection`: The selection under the cursor.
==== optional arguments
* +*-t*+, +*--title*+: Yank the title instead of the URL.
* +*-s*+, +*--sel*+: Use the primary selection instead of the clipboard.
* +*-d*+, +*--domain*+: Yank only the scheme, domain, and port number.
* +*-p*+, +*--pretty*+: Yank the URL in pretty decoded form.
[[yank-selected]]
=== yank-selected
Syntax: +:yank-selected [*--sel*] [*--keep*]+
Yank the selected text to the clipboard or primary selection.
==== optional arguments ==== optional arguments
* +*-s*+, +*--sel*+: Use the primary selection instead of the clipboard. * +*-s*+, +*--sel*+: Use the primary selection instead of the clipboard.
* +*-k*+, +*--keep*+: If given, stay in visual mode after yanking. * +*-k*+, +*--keep*+: Stay in visual mode after yanking the selection.
[[zoom]] [[zoom]]
=== zoom === zoom