fish-shell/share/completions/sshfs.fish
Fabian Homborg 9367d4ff71 Reindent functions to remove useless quotes
This does not include checks/function.fish because that currently
includes a "; end" in a message that indent would remove, breaking the test.
2020-03-09 19:46:43 +01:00

21 lines
642 B
Fish

#
# Completions for sshfs
#
complete -x -c sshfs -d Hostname -a "(__fish_complete_user_at_hosts):"
#
# 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"