From 7341193cf0d0d0f0a38da83a237defd4b3477030 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 20 Jan 2014 08:42:08 +0100 Subject: [PATCH] More FIXME --- qutebrowser/commands/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qutebrowser/commands/utils.py b/qutebrowser/commands/utils.py index b24149fdc..ac467551e 100644 --- a/qutebrowser/commands/utils.py +++ b/qutebrowser/commands/utils.py @@ -24,6 +24,8 @@ class CommandParser(QObject): def parse(self, text): parts = text.strip().split(maxsplit=1) + # FIXME maybe we should handle unambigious shorthands for commands here? + # Or at least we should add :q for :quit. cmd = parts[0] try: obj = cmd_dict[cmd]