diff options
author | Florent Le Coz <louiz@louiz.org> | 2015-05-10 19:24:45 +0200 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2015-05-10 19:26:23 +0200 |
commit | 8aecdc7db758e31307c948f5cf7e55348e299ba9 (patch) | |
tree | 14877834b039c62486a77a5b6591dd005c58695e | |
parent | dfd60426d8da06c817c6d3f71901b4f1c013a819 (diff) | |
download | poezio-8aecdc7db758e31307c948f5cf7e55348e299ba9.tar.gz poezio-8aecdc7db758e31307c948f5cf7e55348e299ba9.tar.bz2 poezio-8aecdc7db758e31307c948f5cf7e55348e299ba9.tar.xz poezio-8aecdc7db758e31307c948f5cf7e55348e299ba9.zip |
Fix the completion of /win when a listtab is open
And probably some other things that use ListTab.matching_names()
-rw-r--r-- | src/tabs/listtab.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tabs/listtab.py b/src/tabs/listtab.py index c5aab5eb..12e2a686 100644 --- a/src/tabs/listtab.py +++ b/src/tabs/listtab.py @@ -197,6 +197,6 @@ class ListTab(Tab): self.core.doupdate() def matching_names(self): - return [(2, self.name)] + return [(2, self.name.full)] |