zsh-workers
 help / color / mirror / code / Atom feed
7a4060341677cdc85b0b01daa1890f87fbaea184 blob 455 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
 
#compdef ionice

local context state line
typeset -A opt_args

_arguments \
  '(* -)-h[display usage information]' \
  '-p[interpret args as process ID]' \
  '-c[scheduling class]:class:(( 1\:realtime 2\:best-effort 3\:idle ))' \
  '-n[scheduling class priority]:class-pririty:((
    0\:high\ priority
    {1..6}\:
    7\:low\ priority
  ))' \
  '*::command or pid:->cmd_or_pid' \
  && return 0

if (( $+opt_args[-p] ))
then
    _pids
else
    _normal
fi
debug log:

solving e3b64aa ...
found e3b64aa in https://inbox.vuxu.org/zsh-workers/slrngdckpi.23d.joerg@alea.gnuu.de/

applying [1/1] https://inbox.vuxu.org/zsh-workers/slrngdckpi.23d.joerg@alea.gnuu.de/
diff --git a/Completion/Linux/Command/_ionice b/Completion/Linux/Command/_ionice
new file mode 100644
index 0000000..e3b64aa

Checking patch Completion/Linux/Command/_ionice...
Applied patch Completion/Linux/Command/_ionice cleanly.

index at:
100644 7a4060341677cdc85b0b01daa1890f87fbaea184	Completion/Linux/Command/_ionice

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