diff options
Diffstat (limited to '')
-rwxr-xr-x | libexec/recit-completions | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libexec/recit-completions b/libexec/recit-completions new file mode 100755 index 0000000..2384dc3 --- /dev/null +++ b/libexec/recit-completions @@ -0,0 +1,14 @@ +#!/usr/bin/env bash +set -e + +COMMAND="$1" +if [ -z "$COMMAND" ]; then + echo "usage: recit completions COMMAND [arg1 arg2...]" >&2 + exit 1 +fi + +COMMAND_PATH="$(command -v "recit-$COMMAND")" +if grep -i "^# provide recit completions" "$COMMAND_PATH" >/dev/null; then + shift + exec "$COMMAND_PATH" --complete "$@" +fi |