summaryrefslogtreecommitdiffstats
path: root/completions/_vault
blob: 25abbc20a07046839fecc722d7537a11cfe311c8 (plain)
1
2
3
4
5
6
7
8
# 3rd party completion loader for commands                 -*- shell-script -*-
# supporting their use of as a `complete -C` handler.
#
# This serves as a fallback in case the completion is not installed otherwise.

type "$1" &>/dev/null && complete -C "\"$1\" 2>/dev/null" "$1"

# ex: filetype=sh