Fix /w completion

This commit is contained in:
mathieui 2013-06-24 15:54:39 +02:00
parent 6a5423d5f5
commit b70c154ff6

View file

@ -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):