mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-10 10:21:23 +02:00
9 lines
105 B
Text
9 lines
105 B
Text
#autoload
|
|
|
|
# Usage: _hostport host
|
|
|
|
local host="$1"
|
|
shift
|
|
|
|
compadd "$@" - ${${(M)hosts\:#$host\:*}#*\:}
|
|
|