Fix too long lines.

This commit is contained in:
Florian Bruhin 2014-08-03 00:36:35 +02:00
parent 9e73cba333
commit d302886b87
2 changed files with 9 additions and 8 deletions

View File

@ -268,9 +268,10 @@ class CommandDispatcher:
- `yank`: Yank the link to the clipboard.
- `yank-primary`: Yank the link to the primary selection.
- `cmd`: Fill the commandline with `:open` and the link.
- `cmd-tab`: Fill the commandline with `:open-tab` and the link.
- `cmd-tag-bg`: Fill the commandline with `:open-tab-bg` and the
- `cmd-tab`: Fill the commandline with `:open-tab` and the
link.
- `cmd-tag-bg`: Fill the commandline with `:open-tab-bg` and
the link.
- `rapid`: Open the link in a new tab and stay in hinting mode.
- `download`: Download the link.
- `userscript`: Call an userscript with `$QUTE_URL` set to the
@ -322,8 +323,8 @@ class CommandDispatcher:
def prev_page_tab(self):
"""Open a "previous" link in a new tab.
This tries to automatically click on typical "Previous Page" links using
some heuristics.
This tries to automatically click on typical "Previous Page" links
using some heuristics.
"""
self._prevnext(prev=True, newtab=True)
@ -331,8 +332,8 @@ class CommandDispatcher:
def next_page_tab(self):
"""Open a "next" link in a new tab.
This tries to automatically click on typical "Previous Page" links using
some heuristics.
This tries to automatically click on typical "Previous Page" links
using some heuristics.
"""
self._prevnext(prev=False, newtab=True)

View File

@ -742,8 +742,8 @@ class HintMode(BaseType):
"""Base class for the hints -> mode setting."""
valid_values = ValidValues(('number', "Use numeric hints."),
('letter', "Use the chars in the hints -> chars "
"setting."))
('letter', "Use the chars in the hints -> "
"chars setting."))
class Proxy(BaseType):