From b70c154ff6527ed4916bb7802ba5ed5375e1db60 Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 24 Jun 2013 15:54:39 +0200 Subject: Fix /w completion --- src/core.py | 1 + 1 file changed, 1 insertion(+) 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): -- cgit v1.2.3