From bb45392c1b87bed8b26eeaf27e04c9af96cec78e Mon Sep 17 00:00:00 2001 From: Panagiotis Ktistakis Date: Fri, 13 May 2016 19:32:35 +0300 Subject: [PATCH] Use the right split function --- qutebrowser/mainwindow/statusbar/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/mainwindow/statusbar/command.py b/qutebrowser/mainwindow/statusbar/command.py index edf93a007..a8cc0c16c 100644 --- a/qutebrowser/mainwindow/statusbar/command.py +++ b/qutebrowser/mainwindow/statusbar/command.py @@ -105,7 +105,7 @@ class Command(misc.MinimalLineEditMixin, misc.CommandLineEdit): space: If given, a space is added to the end. append: If given, the text is appended to the current text. """ - args = split.split(text, keep=True) + args = split.simple_split(text) args = runners.replace_variables(self._win_id, args) text = ' '.join(args)