diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_env | 12 | ||||
-rw-r--r-- | Completion/Zsh/Command/_precommand | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_env b/Completion/Unix/Command/_env new file mode 100644 index 000000000..263818627 --- /dev/null +++ b/Completion/Unix/Command/_env @@ -0,0 +1,12 @@ +#compdef env + +if _pick_variant gnu=Free\ Soft unix --version; then + _arguments \ + '(--ignore-environment -i)'{-i,--ignore-environment}'[start with empty environment]' \ + {-u,--unset=}':env var to remove:compadd ${(k)parameters[(R)*export*]}' \ + '--help[help]' \ + '--version[version]' \ + '*::arguments: _normal' +else + _precommand +fi diff --git a/Completion/Zsh/Command/_precommand b/Completion/Zsh/Command/_precommand index 2314b90b7..535c18260 100644 --- a/Completion/Zsh/Command/_precommand +++ b/Completion/Zsh/Command/_precommand @@ -1,4 +1,4 @@ -#compdef - nohup env eval time rusage noglob nocorrect exec catchsegv +#compdef - nohup eval time rusage noglob nocorrect exec catchsegv shift words (( CURRENT-- )) |