1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-31 18:10:56 +01:00

moved to Completion/Unix/Type/_users_on

This commit is contained in:
Sven Wischnowsky 2001-04-02 11:43:53 +00:00
parent 2d5ff8436f
commit de194a01dc

View file

@ -1,11 +0,0 @@
#compdef write
local expl
if (( $+commands[users] )); then
_wanted users expl 'users logged on' \
compadd "$@" - $(_call users users) && return 0
else
# Other methods of finding out users logged on should be added here
return 1
fi