paste: Autogenerated the easy parts

This commit is contained in:
Ole Jørgen Brønner 2016-12-25 07:52:55 +01:00
parent 75b70de1f9
commit 2f7763e9f2
1 changed files with 16 additions and 0 deletions

16
src/_paste Normal file
View File

@ -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