mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Strip users with leading underscores from ssh completions
This commit is contained in:
parent
3f526698ab
commit
a3a11c2e0c
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ complete -x -c ssh -d Hostname -a "
|
||||||
"
|
"
|
||||||
|
|
||||||
complete -x -c ssh -d User -a "
|
complete -x -c ssh -d User -a "
|
||||||
(__fish_print_users)@
|
(__fish_print_users | grep -v '^_')@
|
||||||
"
|
"
|
||||||
complete -c ssh --description "Command to run" -x -a '(__fish_complete_subcommand --fcs-skip=2)'
|
complete -c ssh --description "Command to run" -x -a '(__fish_complete_subcommand --fcs-skip=2)'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue