diff options
-rw-r--r-- | src/core.py | 1 |
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): |