mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-17 02:51:01 +02:00
19364: completion for printenv
This commit is contained in:
parent
356f432985
commit
88af97c80e
3 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-01-14 Peter Stephenson <pws@csr.com>
|
||||
|
||||
* 19364: Completion/Unix/Command/.distfiles,
|
||||
Completion/Unix/Command/_printenv: complete for printenv.
|
||||
|
||||
2004-01-14 Oliver Kiddle <opk@zsh.org>
|
||||
|
||||
* 19369: Completion/Unix/Command/_getent,
|
||||
|
|
|
@ -23,4 +23,5 @@ _perforce _python _antiword _screen _renice _apm
|
|||
_ecasound _gpg _subversion _aap _sablotron _nmap
|
||||
_chmod _du _getent
|
||||
_nice _rar _vorbis
|
||||
_printenv
|
||||
'
|
||||
|
|
5
Completion/Unix/Command/_printenv
Normal file
5
Completion/Unix/Command/_printenv
Normal file
|
@ -0,0 +1,5 @@
|
|||
#compdef printenv
|
||||
|
||||
local expl
|
||||
|
||||
_wanted parameters expl 'environment variable' _parameters -g '*export*'
|
Loading…
Reference in a new issue