about summary refs log tree commit diff
path: root/Completion/Cvs/_cvs_watch
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Cvs/_cvs_watch')
-rw-r--r--Completion/Cvs/_cvs_watch21
1 files changed, 0 insertions, 21 deletions
diff --git a/Completion/Cvs/_cvs_watch b/Completion/Cvs/_cvs_watch
deleted file mode 100644
index 4db814ae5..000000000
--- a/Completion/Cvs/_cvs_watch
+++ /dev/null
@@ -1,21 +0,0 @@
-#autoload
-
-if (( CURRENT == 2 )); then
-  compadd on off add remove
-else
-  case "$words[2]" in
-    on|off) # "+lR"
-      _arguments -s \
-	-{l,R} \
-	':watch command:' \
-	':*:file:_cvs_files'
-      ;;
-    add|remove) # "+lRa:"
-      _arguments -s \
-	-{l,R} \
-	'*-a+:action:(edit unedit commit all none)' \
-	':watch command:' \
-	':*:file:_cvs_files'
-      ;;
-  esac
-fi