Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Side by Side Diff: gclient_completion.sh

Issue 100463007: Added basic completion (the commands) for gclient. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Let complete use the defaults unless using the help command. Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Run from either local inclusion or /etc/bash_completions.d
bradn 2014/01/07 02:04:49 So I don't have "have" on my goobuntu system. I as
Sheridan Rawlins 2014/01/16 03:48:26 Ok, I realize that installation into /etc/bash_com
2 declare -f have >/dev/null && have gclient || return
3
4 __gclient_commands () {
5 gclient -h | grep -P '(?<= (?:\x1b)\[32m)([\w\d]+)' -o
bradn 2014/01/07 02:04:49 It looks like these terminal codes can vary depend
Sheridan Rawlins 2014/01/16 01:12:59 Added "update" manually, and used sed instead of g
bradn 2014/01/16 04:48:48 I think so.
6 }
7
8 __gclient_compute_all_commands () {
9 test -n "$__gclient_all_commands" ||
10 __gclient_all_commands=$(__gclient_commands)
11 }
12
13 # Passthrough to git completion
bradn 2014/01/07 02:04:49 Huh?
Sheridan Rawlins 2014/01/16 03:48:26 Improved comment - basically just aliased so that
14 _gclient_fetch=_git_fetch
15
16 _gclient () {
17 local cur prev words cword
18 _get_comp_words_by_ref -n =: cur prev words cword
19
20 local i c=1 command
21 while [ $c -lt $cword ]; do
22 i="${words[$c]}"
23 case "$i" in
24 -*) : ignore options ;;
bradn 2014/01/07 02:04:49 This hangs for me when there are flags, should tha
Sheridan Rawlins 2014/01/16 03:48:26 Wow copied from git-completion.bash, but forgot th
25 *) command="$i"; break ;;
26 esac
27 done
28
29 local completion_func="_gclient_${command//-/_}"
30 local -f $completion_func >/dev/null && $completion_func && return
31
32 case "$command" in
33 ""|help)
34 if [[ "$command" != help || "$cword" -le 2 ]]; then
bradn 2014/01/07 02:04:49 Maybe a comment explaining this is so gclient help
Sheridan Rawlins 2014/01/16 03:48:26 Done.
35 __gclient_compute_all_commands
36 COMPREPLY=($(compgen -W "$__gclient_all_commands" $cur))
37 fi
38 ;;
39 *) : just use the default ;;
40 esac
41 } &&
42 complete -F _gclient -o default gclient
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698