zsh-workers
 help / color / mirror / code / Atom feed
4b5bf99f7f27c8d99688454a61ba5a95d6c50931 blob 1549 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 
#compdef mktemp gmktemp

local variant
local args

_pick_variant -r variant busybox=BusyBox gnu='Free Soft' unix --version

args=(
  '(-d --directory)'{-d,--directory}'[make directory instead of file]'
  '(: -)--help[display help information]'
  '(-p --tmpdir)'{-p+,--tmpdir=}'[make relative to specified directory]: :_directories'
  '(-q --quiet)'{-q,--quiet}'[suppress error messages]'
  '--suffix=[append specified suffix to template]:template suffix'
  '-t[interpret template as single path component relative to temp dir]'
  '(-u --dry-run)'{-u,--dry-run}'[print file name only]'
  '(: -)'{-V,--version}'[display version information]'
  '1: :_guard "^-*" "template name"'
)

# Non-GNU variants don't support long options (except BusyBox's --help)
if [[ $variant == *busybox* ]]; then # See also: _busybox
  args=( ${args:#((#s)|*\))(\*|)--^help*} )
elif [[ $variant != gnu ]]; then
  args=( ${args:#((#s)|*\))(\*|)--*} )
fi

[[ $variant == gnu ]] || {
  # BusyBox, OpenBSD, and Solaris have -p, but -t doesn't take an argument
  if [[ $variant == *busybox* ]] || [[ $OSTYPE == (openbsd|solaris)* ]]; then
    args=( ${args:#((#s)|*\))(\*|)-t*} )
    args+=( '-t[generate template relative to temp dir]' )
  # Dragonfly, FreeBSD, and Darwin take an argument to -t and support any number
  # of template files
  else
    args=( ${args:#((#s)|*\))(1:*|(\*|)-t*)} )
    args+=(
      '-t[generate template relative to temp dir using specified prefix]:template prefix'
      '*: :_guard "^-*" "template name"'
    )
  fi
}

_arguments -s -S : $args
debug log:

solving 4b5bf99f7 ...
found 4b5bf99f7 in https://git.vuxu.org/mirror/zsh/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).