From 2f7763e9f2b453d4d26b8d26d460607d0f7935c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20J=C3=B8rgen=20Br=C3=B8nner?= Date: Sun, 25 Dec 2016 07:52:55 +0100 Subject: [PATCH 1/2] paste: Autogenerated the easy parts --- src/_paste | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/_paste 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 From 2e79ec885bf325bc578a04e01441a4c2a38171e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ole=20J=C3=B8rgen=20Br=C3=B8nner?= Date: Sun, 25 Dec 2016 07:59:53 +0100 Subject: [PATCH 2/2] paste: add license header and fixes to auto-generated script Note: allow multiple '-d' since the tool allow it and then it's an annoying restriction if one have aliased paste. eg.: alias paste='paste -d ,' --- src/_paste | 48 +++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 45 insertions(+), 3 deletions(-) diff --git a/src/_paste b/src/_paste index be91535..fd7d035 100644 --- a/src/_paste +++ b/src/_paste @@ -1,11 +1,53 @@ #compdef paste +# +# ------------------------------------------------------------------------------ +# Copyright (c) 2016 Github zsh-users - http://github.com/zsh-users +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * Redistributions in binary form must reproduce the above copyright +# notice, this list of conditions and the following disclaimer in the +# documentation and/or other materials provided with the distribution. +# * Neither the name of the zsh-users nor the +# names of its contributors may be used to endorse or promote products +# derived from this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY +# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# ------------------------------------------------------------------------------ +# Description +# ----------- +# +# Completion script for paste (from util-linux 2.27.1->) +# (https://git.kernel.org/cgit/utils/util-linux/util-linux.git/) +# +# ------------------------------------------------------------------------------ +# Authors +# ------- +# +# * Ole Jørgen Brønner +# +# ------------------------------------------------------------------------------ +# +# Note: paste has upstream bash completion +# Note: Credit to https://github.com/RobSis/zsh-completion-generator which was +# used to generate most of the script. -# 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]' + '*'{-d,--delimiters}'[reuse characters from LIST instead of TABs]:delimiters' '(-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]'