Add GitHub CLI completion
This commit is contained in:
committed by
Noah Gorny
parent
8a8a9018bb
commit
11819278b4
16
completion/available/github-cli.completion.bash
Normal file
16
completion/available/github-cli.completion.bash
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
cite "about-completion"
|
||||
about-completion "GitHub CLI completion"
|
||||
|
||||
if command -v which gh >/dev/null 2>&1; then
|
||||
if command -v which brew >/dev/null 2>&1; then
|
||||
BREW_PREFIX=$(brew --prefix)
|
||||
|
||||
if [ -f "$BREW_PREFIX"/etc/bash_completion.d/gh.sh ]; then
|
||||
. "$BREW_PREFIX"/etc/bash_completion.d/gh.sh
|
||||
fi
|
||||
|
||||
else
|
||||
eval "$(gh completion --shell=bash)"
|
||||
fi
|
||||
fi
|
||||
Reference in New Issue
Block a user