summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2013-06-24 15:54:39 +0200
committermathieui <mathieui@mathieui.net>2013-06-24 15:54:39 +0200
commitb70c154ff6527ed4916bb7802ba5ed5375e1db60 (patch)
treec4b5a01bc528052b8ffa4369a6f6622789c650b6
parent6a5423d5f5a2973d9f06c457d4dd1970c539ec81 (diff)
downloadpoezio-b70c154ff6527ed4916bb7802ba5ed5375e1db60.tar.gz
poezio-b70c154ff6527ed4916bb7802ba5ed5375e1db60.tar.bz2
poezio-b70c154ff6527ed4916bb7802ba5ed5375e1db60.tar.xz
poezio-b70c154ff6527ed4916bb7802ba5ed5375e1db60.zip
Fix /w completion
-rw-r--r--src/core.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core.py b/src/core.py
index f4f355e6..c574370c 100644
--- a/src/core.py
+++ b/src/core.py
@@ -1671,6 +1671,7 @@ class Core(object):
l = []
for tab in self.tabs:
l.extend(tab.matching_names())
+ l = [i[1] for i in l]
return the_input.auto_completion(l, ' ', quotify=False)
def command_move_tab(self, arg):