mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 17:28:19 +00:00
5 lines
No EOL
207 B
Fish
5 lines
No EOL
207 B
Fish
function __fish_complete_user_at_hosts -d "Print list host-names with user@"
|
|
for user_at in (commandline -ct | string match -r '.*@'; or echo "")(__fish_print_hostnames)
|
|
echo $user_at
|
|
end
|
|
end |