Skip to content

Commit cfa00d6

Browse files
committed
bash-completion: complete projects with repo forall
We need to add a little bit more logic here so we stop completing projects once we see the -c argument. Bug: https://crbug.com/gerrit/14797 Change-Id: Ic2ba4f3dd616ec49d8ad754ff62d0d6e0250dbe6 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/312905 Reviewed-by: Xin Li <[email protected]> Tested-by: Mike Frysinger <[email protected]>
1 parent 5467185 commit cfa00d6

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

completion.bash

+21-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@
1414

1515
# Programmable bash completion. https://github.com/scop/bash-completion
1616

17+
# TODO: Handle interspersed options. We handle `repo h<tab>`, but not
18+
# `repo --time h<tab>`.
19+
1720
# Complete the list of repo subcommands.
1821
__complete_repo_list_commands() {
1922
local repo=${COMP_WORDS[0]}
@@ -79,6 +82,23 @@ __complete_repo_command_help() {
7982
fi
8083
}
8184

85+
# Complete `repo forall`.
86+
__complete_repo_command_forall() {
87+
local current=$1
88+
# CWORD=1 is "forall".
89+
# CWORD=2+ are <projects> *until* we hit the -c option.
90+
local i
91+
for (( i = 0; i < COMP_CWORD; ++i )); do
92+
if [[ "${COMP_WORDS[i]}" == "-c" ]]; then
93+
return 0
94+
fi
95+
done
96+
97+
COMPREPLY=(
98+
$(compgen -W "$(__complete_repo_list_projects)" -- "${current}")
99+
)
100+
}
101+
82102
# Complete `repo start`.
83103
__complete_repo_command_start() {
84104
local current=$1
@@ -112,7 +132,7 @@ __complete_repo_arg() {
112132
return 0
113133
;;
114134

115-
help|start)
135+
help|start|forall)
116136
__complete_repo_command_${command} "${current}"
117137
return 0
118138
;;

0 commit comments

Comments
 (0)