mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 00:50:37 +08:00
68527ff20c
This ends up saving a surprising number of bytes.
34 lines
871 B
Fish
34 lines
871 B
Fish
#
|
|
# 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"
|
|
|