summaryrefslogtreecommitdiff
path: root/alot
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-09-01 16:30:01 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-09-03 22:14:09 +0100
commitbbde53b93981868c66949a8b6043b3087adf03cb (patch)
treee30e6aff944a7179542b37a131e0d30964f00cff /alot
parent9404759ee12e38898d2002d1d5df09cb719e19ea (diff)
alow command sequences also in bindings
Diffstat (limited to 'alot')
-rw-r--r--alot/ui.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/alot/ui.py b/alot/ui.py
index e9413c81..d973642b 100644
--- a/alot/ui.py
+++ b/alot/ui.py
@@ -130,9 +130,7 @@ class UI(object):
return [movecmd]
elif not self._locked:
try:
- clear()
- cmd = commandfactory(cmdline, self.mode)
- self.apply_command(cmd)
+ self.apply_commandline(cmdline)
except CommandParseError, e:
self.notify(e.message, priority='error')