paste: Autogenerated the easy parts
This commit is contained in:
parent
75b70de1f9
commit
2f7763e9f2
|
@ -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
|
Loading…
Reference in New Issue