summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2015-04-12 18:24:21 +0200
committermathieui <mathieui@mathieui.net>2015-04-12 18:24:21 +0200
commit8f373ccb0ee729109b440dbac96a84919d955494 (patch)
treee07ae652f80ad5cabccf195797a29e29efe74d59
parentabc3af1bac02ce690b7a18defefb4badfd73ac4a (diff)
downloadpoezio-8f373ccb0ee729109b440dbac96a84919d955494.tar.gz
poezio-8f373ccb0ee729109b440dbac96a84919d955494.tar.bz2
poezio-8f373ccb0ee729109b440dbac96a84919d955494.tar.xz
poezio-8f373ccb0ee729109b440dbac96a84919d955494.zip
Fix #3029 (reset completion when a command is executed)
-rw-r--r--src/tabs/basetabs.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tabs/basetabs.py b/src/tabs/basetabs.py
index 730d702b..16752b5e 100644
--- a/src/tabs/basetabs.py
+++ b/src/tabs/basetabs.py
@@ -290,6 +290,7 @@ class Tab(object):
else:
arg = xhtml.clean_text_simple(arg)
if func:
+ self.input.reset_completion()
func(arg)
return True
else: