diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-10-28 23:49:16 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-10-28 23:49:16 +0100 |
commit | c58ebcb65c0ae5d7b5cf1627e8a458808f59b7ff (patch) | |
tree | 0313e7f84b3053acddaf77f3a04e7c16e8fccd9c /example | |
parent | bash generator implemented, except it does not know how to parse suggestion functions (diff) | |
download | auto-auto-complete-c58ebcb65c0ae5d7b5cf1627e8a458808f59b7ff.tar.gz auto-auto-complete-c58ebcb65c0ae5d7b5cf1627e8a458808f59b7ff.tar.bz2 auto-auto-complete-c58ebcb65c0ae5d7b5cf1627e8a458808f59b7ff.tar.xz |
I think bash completion works
Diffstat (limited to 'example')
-rw-r--r-- | example | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -49,11 +49,11 @@ (no-exec ls "'/usr/share/ponysay/balloons'" (case (ponysay .say) (ponythink .think))) ) (suggestion wrap (verbatim none inhertit 100 60) - (calc (pipe (exec stty size) - (exec cut -d ' ' -f 2) + (calc (pipe (stty size) + (cut -d ' ' -f 2) ) - 10 ) ) - ; in addition to `pipe` to following are also possible `fullpipe` `exec` `cat` `and` `or` + ; in addition to `pipe`(|) to following are also possible `fullpipe`(|&) `cat`(;) `and`(&&) `or`(||) ) |