Initial commit

This commit is contained in:
2012-04-22 11:28:38 +01:00
commit ed8743facb
14 changed files with 348 additions and 0 deletions

15
libexec/tmuxifier-completions Executable file
View File

@@ -0,0 +1,15 @@
#! /usr/bin/env bash
set -e
[ -n "$TMUXIFIER_DEBUG" ] && set -x
command="$1"
if [ -z "$command" ]; then
echo "Usage: tmuxifier completions COMMAND [arg1 arg2...]" >&2
exit 1
fi
command_path="$(command -v "tmuxifier-$command")"
if grep -i "^# provide tmuxifier completions" "$command_path" >/dev/null; then
shift
exec "$command_path" --complete "$@"
fi