Fix too long lines.
This commit is contained in:
parent
9e73cba333
commit
d302886b87
@ -268,9 +268,10 @@ class CommandDispatcher:
|
|||||||
- `yank`: Yank the link to the clipboard.
|
- `yank`: Yank the link to the clipboard.
|
||||||
- `yank-primary`: Yank the link to the primary selection.
|
- `yank-primary`: Yank the link to the primary selection.
|
||||||
- `cmd`: Fill the commandline with `:open` and the link.
|
- `cmd`: Fill the commandline with `:open` and the link.
|
||||||
- `cmd-tab`: Fill the commandline with `:open-tab` and the link.
|
- `cmd-tab`: Fill the commandline with `:open-tab` and the
|
||||||
- `cmd-tag-bg`: Fill the commandline with `:open-tab-bg` and the
|
|
||||||
link.
|
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.
|
- `rapid`: Open the link in a new tab and stay in hinting mode.
|
||||||
- `download`: Download the link.
|
- `download`: Download the link.
|
||||||
- `userscript`: Call an userscript with `$QUTE_URL` set to the
|
- `userscript`: Call an userscript with `$QUTE_URL` set to the
|
||||||
@ -322,8 +323,8 @@ class CommandDispatcher:
|
|||||||
def prev_page_tab(self):
|
def prev_page_tab(self):
|
||||||
"""Open a "previous" link in a new tab.
|
"""Open a "previous" link in a new tab.
|
||||||
|
|
||||||
This tries to automatically click on typical "Previous Page" links using
|
This tries to automatically click on typical "Previous Page" links
|
||||||
some heuristics.
|
using some heuristics.
|
||||||
"""
|
"""
|
||||||
self._prevnext(prev=True, newtab=True)
|
self._prevnext(prev=True, newtab=True)
|
||||||
|
|
||||||
@ -331,8 +332,8 @@ class CommandDispatcher:
|
|||||||
def next_page_tab(self):
|
def next_page_tab(self):
|
||||||
"""Open a "next" link in a new tab.
|
"""Open a "next" link in a new tab.
|
||||||
|
|
||||||
This tries to automatically click on typical "Previous Page" links using
|
This tries to automatically click on typical "Previous Page" links
|
||||||
some heuristics.
|
using some heuristics.
|
||||||
"""
|
"""
|
||||||
self._prevnext(prev=False, newtab=True)
|
self._prevnext(prev=False, newtab=True)
|
||||||
|
|
||||||
|
@ -742,8 +742,8 @@ class HintMode(BaseType):
|
|||||||
"""Base class for the hints -> mode setting."""
|
"""Base class for the hints -> mode setting."""
|
||||||
|
|
||||||
valid_values = ValidValues(('number', "Use numeric hints."),
|
valid_values = ValidValues(('number', "Use numeric hints."),
|
||||||
('letter', "Use the chars in the hints -> chars "
|
('letter', "Use the chars in the hints -> "
|
||||||
"setting."))
|
"chars setting."))
|
||||||
|
|
||||||
|
|
||||||
class Proxy(BaseType):
|
class Proxy(BaseType):
|
||||||
|
Loading…
Reference in New Issue
Block a user