aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-12-12 17:05:13 +0100
committerMattias Andrée <maandree@operamail.com>2013-12-12 17:05:13 +0100
commit11a4f062cb2d1788ae3c9f12d28a420a35c42bd0 (patch)
treedec1558e5dfc9e1299e9b6f881c0f6571ff1b35a
parentupdate pkgbuild (diff)
downloadauto-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-xauto-auto-complete.py6
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':