Update docs.
This commit is contained in:
parent
7ccc58bb68
commit
f61b9fd42c
@ -23,6 +23,11 @@ Added
|
|||||||
- New `--quiet` argument for the `:debug-pyeval` command to not open a tab with
|
- New `--quiet` argument for the `:debug-pyeval` command to not open a tab with
|
||||||
the results. Note `:debug-pyeval` is still only intended for debugging.
|
the results. Note `:debug-pyeval` is still only intended for debugging.
|
||||||
|
|
||||||
|
Changed
|
||||||
|
~~~~~~~
|
||||||
|
|
||||||
|
- Pasting multiple lines via `:paste` now opens each line in a new tab.
|
||||||
|
|
||||||
Fixed
|
Fixed
|
||||||
~~~~~
|
~~~~~
|
||||||
|
|
||||||
|
@ -160,6 +160,7 @@ Contributors, sorted by the number of commits in descending order:
|
|||||||
* ZDarian
|
* ZDarian
|
||||||
* John ShaggyTwoDope Jenkins
|
* John ShaggyTwoDope Jenkins
|
||||||
* Peter Vilim
|
* Peter Vilim
|
||||||
|
* Tarcisio Fedrizzi
|
||||||
* Jonas Schürmann
|
* Jonas Schürmann
|
||||||
* Panagiotis Ktistakis
|
* Panagiotis Ktistakis
|
||||||
* Jimmy
|
* Jimmy
|
||||||
|
@ -402,6 +402,8 @@ Syntax: +:paste [*--sel*] [*--tab*] [*--bg*] [*--window*]+
|
|||||||
|
|
||||||
Open a page from the clipboard.
|
Open a page from the clipboard.
|
||||||
|
|
||||||
|
If the pasted text contains newlines, each line gets opened in its own tab.
|
||||||
|
|
||||||
==== optional arguments
|
==== optional arguments
|
||||||
* +*-s*+, +*--sel*+: Use the primary selection instead of the clipboard.
|
* +*-s*+, +*--sel*+: Use the primary selection instead of the clipboard.
|
||||||
* +*-t*+, +*--tab*+: Open in a new tab.
|
* +*-t*+, +*--tab*+: Open in a new tab.
|
||||||
|
@ -809,6 +809,9 @@ class CommandDispatcher:
|
|||||||
def paste(self, sel=False, tab=False, bg=False, window=False):
|
def paste(self, sel=False, tab=False, bg=False, window=False):
|
||||||
"""Open a page from the clipboard.
|
"""Open a page from the clipboard.
|
||||||
|
|
||||||
|
If the pasted text contains newlines, each line gets opened in its own
|
||||||
|
tab.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
sel: Use the primary selection instead of the clipboard.
|
sel: Use the primary selection instead of the clipboard.
|
||||||
tab: Open in a new tab.
|
tab: Open in a new tab.
|
||||||
|
Loading…
Reference in New Issue
Block a user