diff options
author | mathieui <mathieui@mathieui.net> | 2013-06-24 15:54:39 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-06-24 15:54:39 +0200 |
commit | b70c154ff6527ed4916bb7802ba5ed5375e1db60 (patch) | |
tree | c4b5a01bc528052b8ffa4369a6f6622789c650b6 /src | |
parent | 6a5423d5f5a2973d9f06c457d4dd1970c539ec81 (diff) | |
download | poezio-b70c154ff6527ed4916bb7802ba5ed5375e1db60.tar.gz poezio-b70c154ff6527ed4916bb7802ba5ed5375e1db60.tar.bz2 poezio-b70c154ff6527ed4916bb7802ba5ed5375e1db60.tar.xz poezio-b70c154ff6527ed4916bb7802ba5ed5375e1db60.zip |
Fix /w completion
Diffstat (limited to 'src')
-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): |