From 955478799bf8cc0349ff085118c7ff59431b34f2 Mon Sep 17 00:00:00 2001 From: Jan Verbeek Date: Mon, 4 Jul 2016 13:39:00 +0200 Subject: [PATCH] Shorten repeat-command description, remove .i, .o If .i and .o exist there's a delay before . gets accepted. --- qutebrowser/config/configdata.py | 2 -- qutebrowser/misc/utilcmds.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index ecd3fdc9c..225828429 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -1463,10 +1463,8 @@ KEY_DATA = collections.OrderedDict([ ('hint all hover', [';h']), ('hint images', [';i']), ('hint images tab', [';I']), - ('hint images tab-bg', ['.i']), ('hint links fill ":open {hint-url}"', [';o']), ('hint links fill ":open -t {hint-url}"', [';O']), - ('hint links fill ":open -b {hint-url}"', ['.o']), ('hint links yank', [';y']), ('hint links yank-primary', [';Y']), ('hint --rapid links tab-bg', [';r']), diff --git a/qutebrowser/misc/utilcmds.py b/qutebrowser/misc/utilcmds.py index 948f1ca0e..e420f2f76 100644 --- a/qutebrowser/misc/utilcmds.py +++ b/qutebrowser/misc/utilcmds.py @@ -223,7 +223,7 @@ def debug_set_fake_clipboard(s=None): @cmdutils.argument('win_id', win_id=True) @cmdutils.argument('count', count=True) def repeat_command(win_id, count=None): - """Repeat the last executed command, like '.' in vi. + """Repeat the last executed command. Args: count: Which count to pass the command.