diff --git a/src/_paste b/src/_paste new file mode 100644 index 0000000..be91535 --- /dev/null +++ b/src/_paste @@ -0,0 +1,16 @@ +#compdef paste + +# zsh completions for 'paste' +# automatically generated with http://github.com/RobSis/zsh-completion-generator +local arguments + +arguments=( + '(-d --delimiters)'{-d,--delimiters}'[reuse characters from LIST instead of TABs]' + '(-s --serial)'{-s,--serial}'[paste one file at a time instead of in parallel]' + '(-z --zero-terminated)'{-z,--zero-terminated}'[line delimiter is NUL, not newline]' + '--help[display this help and exit]' + '--version[output version information and exit]' + '*:filename:_files' +) + +_arguments -s $arguments