File helm-completions of Package helm
#
# Import helm completion
#
# Normalize shell name
SHELL_NAME=${0##*/}
SHELL_NAME=${SHELL_NAME#-}
# Import completion from helm if installed
if type -p helm > /dev/null; then
source <(helm completion "$SHELL_NAME")
fi