mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
36691df6fe
I believe apm must have been buggy - example output that I found online showed `tr` was mangling paths with spaces in it. Should be fixed. Also, use dscl on OS X in __fish_complete_users.fish like __fish_print_users.fish already does.
51 lines
2 KiB
Fish
51 lines
2 KiB
Fish
#
|
|
# Load common ssh options
|
|
#
|
|
|
|
__fish_complete_ssh ssh
|
|
|
|
complete -x -c ssh -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)
|
|
"
|
|
|
|
complete -x -c ssh -d User -a "
|
|
(__fish_print_users | string match -r -v '^_')@
|
|
"
|
|
complete -c ssh --description "Command to run" -x -a '(__fish_complete_subcommand --fcs-skip=2)'
|
|
|
|
complete -c ssh -s a --description "Disables forwarding of the authentication agent"
|
|
complete -c ssh -s A --description "Enables forwarding of the authentication agent"
|
|
complete -x -c ssh -s b --description "Interface to transmit from" -a "
|
|
(
|
|
cat /proc/net/arp ^/dev/null| string match -r -v '^IP'|cut -d ' ' -f 1 ^/dev/null
|
|
)
|
|
"
|
|
|
|
complete -x -c ssh -s e --description "Escape character" -a "\^ none"
|
|
complete -c ssh -s f --description "Go to background"
|
|
complete -c ssh -s g --description "Allow remote host to connect to local forwarded ports"
|
|
complete -c ssh -s I --description "Smartcard device"
|
|
complete -c ssh -s k --description "Disable forwarding of Kerberos tickets"
|
|
complete -c ssh -s l -x -a "(__fish_complete_users)" --description "User"
|
|
complete -c ssh -s m --description "MAC algorithm"
|
|
complete -c ssh -s n --description "Prevent reading from stdin"
|
|
complete -c ssh -s N --description "Do not execute remote command"
|
|
complete -c ssh -s p -x --description "Port"
|
|
complete -c ssh -s q --description "Quiet mode"
|
|
complete -c ssh -s s --description "Subsystem"
|
|
complete -c ssh -s t --description "Force pseudo-tty allocation"
|
|
complete -c ssh -s T --description "Disable pseudo-tty allocation"
|
|
complete -c ssh -s x --description "Disable X11 forwarding"
|
|
complete -c ssh -s X --description "Enable X11 forwarding"
|
|
complete -c ssh -s L --description "Locally forwarded ports"
|
|
complete -c ssh -s R --description "Remotely forwarded ports"
|
|
complete -c ssh -s D --description "Dynamic port forwarding"
|
|
|
|
# Since ssh runs subcommands, it can accept any switches
|
|
complete -c ssh -u
|