about summary refs log tree commit diff
path: root/Completion/Unix/Command/_watch
diff options
context:
space:
mode:
Diffstat (limited to 'Completion/Unix/Command/_watch')
-rw-r--r--Completion/Unix/Command/_watch9
1 files changed, 9 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_watch b/Completion/Unix/Command/_watch
new file mode 100644
index 000000000..a8d29403f
--- /dev/null
+++ b/Completion/Unix/Command/_watch
@@ -0,0 +1,9 @@
+#compdef watch
+
+# watch(1) has completely different semantics on freebsd compared to linux, hence:
+case $OSTYPE in
+  (freebsd*|dragonfly*) _watch-snoop "$@";;
+  (*)           _default;;
+esac
+
+# NOTREACHED