about summary refs log tree commit diff
path: root/Completion/Unix/Command/_watch
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2015-07-24 16:43:14 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2015-07-26 11:23:14 +0000
commitd470453d76a3ff0c4816752630bf70733cfbc8b5 (patch)
tree629c19d3ef9059a51c83a1568fe3ed1643327615 /Completion/Unix/Command/_watch
parent679d52fcca727a6b9e4dddf63386580907e28f8c (diff)
downloadzsh-d470453d76a3ff0c4816752630bf70733cfbc8b5.tar.gz
zsh-d470453d76a3ff0c4816752630bf70733cfbc8b5.tar.xz
zsh-d470453d76a3ff0c4816752630bf70733cfbc8b5.zip
35274: completion: Add FreeBSD's watch(1)
Review-by: Oliver Kiddle
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