diff options
-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': |