diff options
author | Oliver Kiddle <opk@zsh.org> | 2017-10-07 22:26:51 +0200 |
---|---|---|
committer | Oliver Kiddle <opk@zsh.org> | 2017-10-07 22:26:51 +0200 |
commit | 69fcc22dc84e8411870ba8f2a4c876e223ad2a08 (patch) | |
tree | 1ccdeb6677938ae9f23ec0a55ed59f5045a26a56 /Completion/Unix/Command/_expand | |
parent | e49aabc13a858c636146f6744ac25b3e741763ff (diff) | |
download | zsh-69fcc22dc84e8411870ba8f2a4c876e223ad2a08.tar.gz zsh-69fcc22dc84e8411870ba8f2a4c876e223ad2a08.zip |
41823: new completions for some GNU coreutils utilities
Diffstat (limited to 'Completion/Unix/Command/_expand')
-rw-r--r-- | Completion/Unix/Command/_expand | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_expand b/Completion/Unix/Command/_expand new file mode 100644 index 000000000..3f297dce2 --- /dev/null +++ b/Completion/Unix/Command/_expand @@ -0,0 +1,16 @@ +#compdef expand gexpand + +local -a args + +if _pick_variant gnu=GNU unix --version; then + args=( + '(-i --initial --help)'{-i,--initial}"[don't convert tabs after non blanks]" + '(-t --tabs --version)'{-t+,--tabs=}'[specify tab width]:list of tab positions' + '(* -)--help[display usage information]' + '(* -)--version[output version information]' + ) +else + args=( -A "-*" '(-t --tabs)'{-t+,--tabs=}'[specify tab width]:list of tab positions' ) +fi + +_arguments -s -S "$args[@]" '*:file:_files' |