fish-shell/share/completions/sshfs.fish

34 lines
871 B
Fish
Raw Normal View History

#
# Completions for sshfs
#
# Host combinations, borrowed from ssh.fish
#
complete -x -c sshfs -d Hostname -a "
(__fish_print_hostnames):
(
#Prepend any username specified in the completion to the hostname
echo (commandline -ct)|sed -ne 's/\(.*@\).*/\1/p'
)(__fish_print_hostnames):
(__fish_print_users)@
"
#
# Mount Points
#
complete -c sshfs -x -a '(__fish_complete_directories (commandline -ct) "Mount point")'
#
# Command options
#
complete -c sshfs -s V -d "Display version and exit"
complete -c sshfs -s p -x -d "Port"
complete -c sshfs -s C -d "Compression"
complete -c sshfs -s o -x -d "Mount options"
complete -c sshfs -s d -d "Enable debug"
complete -c sshfs -s f -d "Foreground operation"
complete -c sshfs -s s -d "Disable multi-threaded operation"
complete -c sshfs -s r -d "Mount options"
complete -c sshfs -s h -d "Display help and exit"