19 lines
434 B
Bash
Executable file
19 lines
434 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
gen() {
|
|
if is-executable $1; then
|
|
echo "$1 updated"
|
|
"$@" >"_$argv[1]"
|
|
else
|
|
echo "skipping $1"
|
|
fi
|
|
}
|
|
|
|
echo "GENERATING COMPLETION SCRIPTS"
|
|
echo "-----------------------------"
|
|
gen sheldon completions --shell zsh
|
|
gen just --completions zsh
|
|
gen zellij setup --generate-completion zsh
|
|
|
|
echo "FETCHING COMPLETION SCRIPTS"
|
|
wget -O _task https://raw.githubusercontent.com/go-task/task/master/completion/zsh/_task
|