Fix combined yank documentation

This commit is contained in:
Marshall Lochbaum 2016-08-06 20:08:04 -04:00
parent 54ba27cf77
commit a90662ef83

View File

@ -627,8 +627,15 @@ class CommandDispatcher:
Args: Args:
what: What to yank. 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.
sel: Use the primary selection instead of the clipboard. sel: Use the primary selection instead of the clipboard.
keep: If given, stay in visual mode after yanking. keep: Stay in visual mode after yanking the selection.
""" """
if what == 'title': if what == 'title':
s = self._tabbed_browser.page_title(self._current_index()) s = self._tabbed_browser.page_title(self._current_index())