2006-01-24 23:01:33 +00:00
|
|
|
#
|
|
|
|
# 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)@
|
|
|
|
"
|
|
|
|
#
|
2014-01-29 05:33:27 +00:00
|
|
|
# Mount Points
|
2006-01-24 23:01:33 +00:00
|
|
|
#
|
2014-01-29 05:33:27 +00:00
|
|
|
complete -c sshfs -x -a '(__fish_complete_directories (commandline -ct) "Mount point")'
|
2006-01-24 23:01:33 +00:00
|
|
|
#
|
|
|
|
# Command options
|
|
|
|
#
|
2007-01-16 01:18:28 +00:00
|
|
|
complete -c sshfs -s V --description "Display version and exit"
|
|
|
|
complete -c sshfs -s p -x --description "Port"
|
|
|
|
complete -c sshfs -s C --description "Compression"
|
|
|
|
complete -c sshfs -s o -x --description "Mount options"
|
|
|
|
complete -c sshfs -s d --description "Enable debug"
|
|
|
|
complete -c sshfs -s f --description "Foreground operation"
|
|
|
|
complete -c sshfs -s s --description "Disable multi-threaded operation"
|
|
|
|
complete -c sshfs -s r --description "Mount options"
|
|
|
|
complete -c sshfs -s h --description "Display help and exit"
|
2006-01-24 23:01:33 +00:00
|
|
|
|