Fix contrib/ssh command completion
Only complete with command names (compgen -c) if argc > 1
This commit is contained in:
parent
043fe4dd4b
commit
cdf0e82686
@ -95,7 +95,9 @@ _ssh()
|
|||||||
shift
|
shift
|
||||||
done
|
done
|
||||||
_known_hosts_real -a "$optconfigfile" -h "$cur"
|
_known_hosts_real -a "$optconfigfile" -h "$cur"
|
||||||
COMPREPLY=( "${COMPREPLY[@]}" $( compgen -c -- $cur ) )
|
if [ $COMP_CWORD -ne 1 ]; then
|
||||||
|
COMPREPLY=( "${COMPREPLY[@]}" $( compgen -c -- $cur ) )
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
return 0
|
return 0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user