about summary refs log tree commit diff
path: root/Completion/Zsh
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2011-08-17 10:18:14 +0000
committerMikael Magnusson <mikachu@gmail.com>2011-08-17 10:18:14 +0000
commit57ca91ba9d6a2b4c4b69286c27cd0b8476c6f625 (patch)
tree221fe2dd1164cbf12047f79f6bb8d7b3b62749a7 /Completion/Zsh
parentcd3acd762de380d84c0e1f213f4b9bcc36206d55 (diff)
downloadzsh-57ca91ba9d6a2b4c4b69286c27cd0b8476c6f625.tar.gz
zsh-57ca91ba9d6a2b4c4b69286c27cd0b8476c6f625.tar.xz
zsh-57ca91ba9d6a2b4c4b69286c27cd0b8476c6f625.zip
29682: new _schedtool completer
Diffstat (limited to 'Completion/Zsh')
-rw-r--r--Completion/Zsh/Command/.distfiles1
-rw-r--r--Completion/Zsh/Command/_schedtool25
2 files changed, 26 insertions, 0 deletions
diff --git a/Completion/Zsh/Command/.distfiles b/Completion/Zsh/Command/.distfiles
index 6feec496d..3981f74cc 100644
--- a/Completion/Zsh/Command/.distfiles
+++ b/Completion/Zsh/Command/.distfiles
@@ -23,6 +23,7 @@ _print
 _prompt
 _read
 _sched
+_schedtool
 _set
 _setopt
 _source
diff --git a/Completion/Zsh/Command/_schedtool b/Completion/Zsh/Command/_schedtool
new file mode 100644
index 000000000..869f146e3
--- /dev/null
+++ b/Completion/Zsh/Command/_schedtool
@@ -0,0 +1,25 @@
+#compdef schedtool
+
+local curcontext="$curcontext" line state ret=1
+
+_arguments -C \
+  '(-p    -F -R -B -I -D -M)-N[for SCHED_NORMAL]' \
+  '(   -N    -R -B -I -D -M)-F[for SCHED_FIFO]' \
+  '(   -N -F    -B -I -D -M)-R[for SCHED_RR]' \
+  '(-p -N -F -R    -I -D -M)-B[for SCHED_BATCH]' \
+  '(   -N -F -R -B    -D -M)-I[for SCHED_ISO]' \
+  '(-p -N -F -R -B -I    -M)-D[for SCHED_IDLEPRIO]' \
+  '(   -N -F -R -B -I -D   )-M[for manual mode; raw number for POLICY]:raw policy number' \
+  '(   -N       -B    -D   )-p[usually 1-99; only for FIFO, RR or ISO]:static priority' \
+  '-a[cpu affinity]:mask or list' \
+  '-n[set niceness to NICE_LEVEL]:priority' \
+  '-e[start COMMAND with specified policy/priority]:program: _command_names -e:*::program arguments: _normal' \
+  '-v[be verbose]' \
+  '*:processes:->processes' && ret=0
+
+if [[ -n "$state" ]]; then
+  _alternative \
+    'processes:: _pids' && ret=0
+fi
+
+return ret