2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-22 17:55:11 +00:00
fish-shell/share/functions/__fish_complete_user_at_hosts.fish

5 lines
207 B
Fish
Raw Normal View History

function __fish_complete_user_at_hosts -d "Print list host-names with user@"
2017-07-19 05:40:25 +00:00
for user_at in (commandline -ct | string match -r '.*@'; or echo "")(__fish_print_hostnames)
echo $user_at
end
end