diff --git a/qutebrowser/commands/runners.py b/qutebrowser/commands/runners.py index 61ec2202d..21921eaec 100644 --- a/qutebrowser/commands/runners.py +++ b/qutebrowser/commands/runners.py @@ -206,7 +206,7 @@ class CommandRunner(QObject): A split string commandline, e.g ['open', 'www.google.com'] """ cmdstr, sep, argstr = text.partition(' ') - if not cmdstr: + if not cmdstr and not fallback: raise cmdexc.NoSuchCommandError("No command given") if aliases: new_cmd = self._get_alias(text, alias_no_args)