about summary refs log tree commit diff
path: root/Completion/User/_user_at_host
diff options
context:
space:
mode:
authorTanaka Akira <akr@users.sourceforge.net>1999-09-29 23:00:20 +0000
committerTanaka Akira <akr@users.sourceforge.net>1999-09-29 23:00:20 +0000
commitc6257a5a71eddd09e7d33fa160608f944d3e4116 (patch)
tree0fd82b6dbf3d218357089b16d4115f1dbaae71f7 /Completion/User/_user_at_host
parentf5c25fe270ba371b0ab5766b430640df70de7c56 (diff)
downloadzsh-c6257a5a71eddd09e7d33fa160608f944d3e4116.tar.gz
zsh-c6257a5a71eddd09e7d33fa160608f944d3e4116.tar.xz
zsh-c6257a5a71eddd09e7d33fa160608f944d3e4116.zip
zsh-workers/8101
Diffstat (limited to 'Completion/User/_user_at_host')
-rw-r--r--Completion/User/_user_at_host15
1 files changed, 15 insertions, 0 deletions
diff --git a/Completion/User/_user_at_host b/Completion/User/_user_at_host
new file mode 100644
index 000000000..6006ef63b
--- /dev/null
+++ b/Completion/User/_user_at_host
@@ -0,0 +1,15 @@
+#autoload
+
+local expl nm="$compstate[nmatches]"
+
+if [[ -prefix 1 *@ ]]; then
+  local user=${PREFIX/@}
+  compset -P 1 '*@'
+  _description expl "hostnames for $user"
+  _combination accounts_users_hosts users="$user" hosts "$expl[@]" "$@"
+else
+  _description expl "usernames"
+  _combination accounts_users_hosts users -S@ -q "$expl[@]" "$@"
+fi
+
+[[ nm -ne compstate[nmatches] ]]