mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Use sgrep instead of grep in ssh completion
This commit is contained in:
parent
a3a11c2e0c
commit
fe68d30be9
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 "
|
||||
(__fish_print_users | grep -v '^_')@
|
||||
(__fish_print_users | sgrep -v '^_')@
|
||||
"
|
||||
complete -c ssh --description "Command to run" -x -a '(__fish_complete_subcommand --fcs-skip=2)'
|
||||
|
||||
|
|
Loading…
Reference in a new issue