From d1b947279ed3126975ef7f829d0e5d710cf7a457 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 22 May 2014 10:54:18 +0200 Subject: [PATCH] Use arrow keys for completion items --- TODO | 1 - qutebrowser/config/configdata.py | 8 ++++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/TODO b/TODO index 25f2455fb..de7a39421 100644 --- a/TODO +++ b/TODO @@ -56,7 +56,6 @@ Improvements / minor features - if a cookie is a http-only cookie domain is prepended with a #HttpOnly_ - Zoom with ctrl + mousewheel - Close tabs on right click -- Up/Down not for history - search highlighting - max height for completion (be smaller if possible) - tab should directly insert word and space if there's only one option diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index b287ca8f2..8158f1237 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -696,11 +696,12 @@ DATA = OrderedDict([ ('keybind.command', sect.ValueList( types.KeyBindingName(), types.KeyBinding(), ('', 'leave-mode'), - ('', 'leave-mode'), - ('', 'command-history-prev'), - ('', 'command-history-next'), + ('', 'command-history-prev'), + ('', 'command-history-next'), ('', 'completion-item-prev'), + ('', 'completion-item-prev'), ('', 'completion-item-next'), + ('', 'completion-item-next'), ('', 'command-accept'), ('', 'rl-backward-char'), ('', 'rl-forward-char'), @@ -718,7 +719,6 @@ DATA = OrderedDict([ ('keybind.prompt', sect.ValueList( types.KeyBindingName(), types.KeyBinding(), ('', 'leave-mode'), - ('', 'leave-mode'), ('', 'prompt-accept'), ('y', 'prompt-yes'), ('n', 'prompt-no'),