about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Completion/User/_user@host15
1 files changed, 0 insertions, 15 deletions
diff --git a/Completion/User/_user@host b/Completion/User/_user@host
deleted file mode 100644
index 6006ef63b..000000000
--- a/Completion/User/_user@host
+++ /dev/null
@@ -1,15 +0,0 @@
-#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] ]]