We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c839d6 commit c8d5e3fCopy full SHA for c8d5e3f
tools/git.sh
@@ -135,3 +135,13 @@ function git_clean_merged_branches() {
135
done
136
}
137
export -f git_clean_merged_branches
138
+
139
140
+if [[ -z $GLAB_COMPLETION_INSTALLED ]]; then
141
+ if command -v glab > /dev/null; then
142
+ # see https://docs.gitlab.com/cli/completion/#bash
143
+ # shellcheck disable=SC1090
144
+ source <(glab completion -s bash)
145
+ export GLAB_COMPLETION_INSTALLED=1
146
+ fi
147
+fi
0 commit comments