diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-12-12 17:05:13 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-12-12 17:05:13 +0100 |
commit | 11a4f062cb2d1788ae3c9f12d28a420a35c42bd0 (patch) | |
tree | dec1558e5dfc9e1299e9b6f881c0f6571ff1b35a | |
parent | update pkgbuild (diff) | |
download | auto-auto-complete-11a4f062cb2d1788ae3c9f12d28a420a35c42bd0.tar.gz auto-auto-complete-11a4f062cb2d1788ae3c9f12d28a420a35c42bd0.tar.bz2 auto-auto-complete-11a4f062cb2d1788ae3c9f12d28a420a35c42bd0.tar.xz |
typo3.1
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rwxr-xr-x | auto-auto-complete.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/auto-auto-complete.py b/auto-auto-complete.py index 0c05f5f..35d8ab4 100755 --- a/auto-auto-complete.py +++ b/auto-auto-complete.py @@ -273,7 +273,7 @@ class GeneratorBASH: if functionType == 'pipe': return ' ( %s ) ' % (' | '.join(elems)) if functionType == 'fullpipe': - return ' ( %s ) ' % (' |% '.join(elems)) + return ' ( %s ) ' % (' |& '.join(elems)) if functionType == 'cat': return ' ( %s ) ' % (' ; '.join(elems)) if functionType == 'and': @@ -464,7 +464,7 @@ class GeneratorFISH: if functionType == 'pipe': return ' ( %s ) ' % (' | '.join(elems)) if functionType == 'fullpipe': - return ' ( %s ) ' % (' |% '.join(elems)) + return ' ( %s ) ' % (' |& '.join(elems)) if functionType == 'cat': return ' ( %s ) ' % (' ; '.join(elems)) if functionType == 'and': @@ -653,7 +653,7 @@ class GeneratorZSH: if functionType == 'pipe': return ' ( %s ) ' % (' | '.join(elems)) if functionType == 'fullpipe': - return ' ( %s ) ' % (' |% '.join(elems)) + return ' ( %s ) ' % (' |& '.join(elems)) if functionType == 'cat': return ' ( %s ) ' % (' ; '.join(elems)) if functionType == 'and': |