about summary refs log tree commit diff
path: root/Completion/Unix/Command/_env
diff options
context:
space:
mode:
authorJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2018-10-24 17:32:17 +0900
committerJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2018-10-24 17:32:17 +0900
commit4ad04eeb85fd3ab48de0532713e37a46e8482fc7 (patch)
treea52f542c9d1b7eaea4454becc4362c55ffa3ff8a /Completion/Unix/Command/_env
parent916ed7426422c2f203b7352d8c0654f0b1e60cbb (diff)
downloadzsh-4ad04eeb85fd3ab48de0532713e37a46e8482fc7.tar.gz
zsh-4ad04eeb85fd3ab48de0532713e37a46e8482fc7.tar.xz
zsh-4ad04eeb85fd3ab48de0532713e37a46e8482fc7.zip
43722: _ed, _env, _sort: support darwin
use the same completions as freebsd
Diffstat (limited to 'Completion/Unix/Command/_env')
-rw-r--r--Completion/Unix/Command/_env8
1 files changed, 4 insertions, 4 deletions
diff --git a/Completion/Unix/Command/_env b/Completion/Unix/Command/_env
index 99fc513d7..932a7fc89 100644
--- a/Completion/Unix/Command/_env
+++ b/Completion/Unix/Command/_env
@@ -16,11 +16,11 @@ case $variant in
       "${ign}(- *)--version[display version information]"
     )
   ;;
-  freebsd*)
+  freebsd*|darwin*)
     args=(
-      '(-i)*-u[remove variable from the environment]:env var to remove:_parameters -g "*export*"'
-      '-P[specify alternate executable search PATH]:path:_dir_list'
-      '-S[perform word splitting]'
+      '(-i)*-u+[remove variable from the environment]:env var to remove:_parameters -g "*export*"'
+      '-P+[specify alternate executable search PATH]:path:_dir_list'
+      '-S+[perform word splitting]:string to split'
       '*-v[verbose output]'
     )
   ;&