From 888c1690dec896044d10168181d6599288b7ad4b Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 5 Feb 2014 11:20:33 +0100 Subject: [PATCH] Add FIXME in _handle_single_key --- qutebrowser/commands/keys.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qutebrowser/commands/keys.py b/qutebrowser/commands/keys.py index 256c24339..34db3bc76 100644 --- a/qutebrowser/commands/keys.py +++ b/qutebrowser/commands/keys.py @@ -103,6 +103,8 @@ class KeyParser(QObject): e -- the KeyPressEvent from Qt """ + # FIXME maybe we can do this in an easier way by using QKeySeqyence + # which has a matches method. logging.debug('Got key: {} / text: "{}"'.format(e.key(), e.text())) txt = e.text().strip() if not txt: