Update docs

This commit is contained in:
Florian Bruhin 2016-08-16 11:22:29 +02:00
parent 380856bcb2
commit d1138fa342
4 changed files with 5 additions and 2 deletions

View File

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

View File

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

View File

@ -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']+

View File

@ -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("'")