File tree 1 file changed +21
-1
lines changed
1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 14
14
15
15
# Programmable bash completion. https://github.com/scop/bash-completion
16
16
17
+ # TODO: Handle interspersed options. We handle `repo h<tab>`, but not
18
+ # `repo --time h<tab>`.
19
+
17
20
# Complete the list of repo subcommands.
18
21
__complete_repo_list_commands () {
19
22
local repo=${COMP_WORDS[0]}
@@ -79,6 +82,23 @@ __complete_repo_command_help() {
79
82
fi
80
83
}
81
84
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
+
82
102
# Complete `repo start`.
83
103
__complete_repo_command_start () {
84
104
local current=$1
@@ -112,7 +132,7 @@ __complete_repo_arg() {
112
132
return 0
113
133
;;
114
134
115
- help|start)
135
+ help|start|forall )
116
136
__complete_repo_command_${command} " ${current} "
117
137
return 0
118
138
;;
You can’t perform that action at this time.
0 commit comments