diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2008-10-10 09:56:25 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2008-10-10 09:56:25 +0000 |
commit | 7783d398c3e9a33790530d14de72c0ea50cabe36 (patch) | |
tree | e2d4a7c2973fa8351274d36e0894c6728850a682 | |
parent | f1628c32788039657e190b17a2ce0013c0a7892e (diff) | |
download | zsh-7783d398c3e9a33790530d14de72c0ea50cabe36.tar.gz zsh-7783d398c3e9a33790530d14de72c0ea50cabe36.tar.xz zsh-7783d398c3e9a33790530d14de72c0ea50cabe36.zip |
25029: : "environ" style to allow a different search path when completing
as a different user.
-rw-r--r-- | Completion/Unix/Command/_sudo | 7 | ||||
-rw-r--r-- | Doc/Zsh/compsys.yo | 8 |
2 files changed, 15 insertions, 0 deletions
diff --git a/Completion/Unix/Command/_sudo b/Completion/Unix/Command/_sudo index 2b5a5cb7d..b4c002168 100644 --- a/Completion/Unix/Command/_sudo +++ b/Completion/Unix/Command/_sudo @@ -1,5 +1,12 @@ #compdef sudo +local curcontext="$curcontext" environ e +zstyle -a "$curcontext" environ environ + +for e in "${environ[@]}" +do local -x "$e" +done + _arguments \ '-V[show version]' \ '-l[list allowed commands]' \ diff --git a/Doc/Zsh/compsys.yo b/Doc/Zsh/compsys.yo index 54684db14..77e6a8983 100644 --- a/Doc/Zsh/compsys.yo +++ b/Doc/Zsh/compsys.yo @@ -1312,6 +1312,14 @@ A list of names of network domains for completion. If this is not set, domain names will be taken from the file tt(/etc/resolv.conf). ) +kindex(environ, completion style) +item(tt(environ))( +The environ style is used when completing for `tt(sudo)'. It is set to an +array of `var(VAR)tt(=)var(value)' assignments to be exported into the +local environment before the completion for the target command is invoked. +example(zstyle :complete:sudo: environ \ + PATH="/sbin:/usr/sbin:$PATH" HOME="/root") +) kindex(expand, completion style) item(tt(expand))( This style is used when completing strings consisting of multiple |