From d302886b879617379f7fc30e36c965020fab61f4 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Sun, 3 Aug 2014 00:36:35 +0200 Subject: [PATCH] Fix too long lines. --- qutebrowser/browser/commands.py | 13 +++++++------ qutebrowser/config/conftypes.py | 4 ++-- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/qutebrowser/browser/commands.py b/qutebrowser/browser/commands.py index 6a7601c85..c42662802 100644 --- a/qutebrowser/browser/commands.py +++ b/qutebrowser/browser/commands.py @@ -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) diff --git a/qutebrowser/config/conftypes.py b/qutebrowser/config/conftypes.py index 916cfb100..9d63fed60 100644 --- a/qutebrowser/config/conftypes.py +++ b/qutebrowser/config/conftypes.py @@ -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):