about summary refs log tree commit diff
path: root/Completion/Unix/Command/_at
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Unix/Command/_at')
-rw-r--r--Completion/Unix/Command/_at12
1 files changed, 7 insertions, 5 deletions
diff --git a/Completion/Unix/Command/_at b/Completion/Unix/Command/_at
index 8734e6b55..b22589020 100644
--- a/Completion/Unix/Command/_at
+++ b/Completion/Unix/Command/_at
@@ -1,6 +1,6 @@
 #compdef atrm atq at batch
 
-local context state line expl
+local context state line expl ret=1
 typeset -A opt_args
 
 #todo (when extremely bored) make -l and -d do the atq and atrm completions
@@ -8,12 +8,12 @@ case $service in
 atrm)
   _arguments \
     '-V[print version number]' \
-    '*:job number:->jobs'
+    '*:job number:->jobs' && ret=0
   ;;
 atq)
   _arguments \
     '-V[print version number]' \
-    '-q[uses specified queue]:a-z+A-Z'
+    '-q[uses specified queue]:a-z+A-Z' && ret=0
   ;;
 at|batch)
   _arguments \
@@ -29,11 +29,13 @@ at|batch)
     - atrm \
       '-d[alias for atrm]' \
     - show-job \
-      '-c[cat specified jobs to stdout]:*:job number:->jobs'
+      '-c[cat specified jobs to stdout]:*:job number:->jobs' && ret=0
 esac
 
 case $state in
 jobs)
-  _wanted job expl 'job number' compadd ${(M)${(f)"$(_call_program job atq)"}##<->}
+  _wanted -C $context jobs expl 'job number' compadd ${(M)${(f)"$(_call_program job atq)"}##<->} && ret=0
   ;;
 esac
+
+return ret