zsh-workers
 help / color / mirror / code / Atom feed
d08ca39a8e0a8f72d27562ef5ed2eac10b6d8780 blob 1624 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
44
 
#compdef mktemp gmktemp

local curcontext=$curcontext variant
local -a context line state state_descr args
local -A opt_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 d08ca39a8 ...
found d08ca39a8 in https://inbox.vuxu.org/zsh-workers/0ED247D6-B6E3-40AB-A59D-DDEFC4083BEE@dana.is/

applying [1/1] https://inbox.vuxu.org/zsh-workers/0ED247D6-B6E3-40AB-A59D-DDEFC4083BEE@dana.is/
diff --git a/Completion/Unix/Command/_mktemp b/Completion/Unix/Command/_mktemp
new file mode 100644
index 000000000..d08ca39a8

Checking patch Completion/Unix/Command/_mktemp...
Applied patch Completion/Unix/Command/_mktemp cleanly.

index at:
100644 d08ca39a8e0a8f72d27562ef5ed2eac10b6d8780	Completion/Unix/Command/_mktemp

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).