-
Notifications
You must be signed in to change notification settings - Fork 6
/
_scriptorium
179 lines (156 loc) · 3.69 KB
/
_scriptorium
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
# bash completion for scriptorium
# see https://github.com/Honestpuck/apple_complete
# for how to install in bash and zsh
__scriptoriumcomp_words_include() {
local i=1
while [[ "$i" -lt "$COMP_CWORD" ]]
do
if [[ "${COMP_WORDS[i]}" = "$1" ]]
then
return 0
fi
i="$((++i))"
done
return 1
}
__scriptoriumcomp() {
# break $1 on space, tab, and newline characters,
# and turn it into a newline separated list of words
local list s sep=$'\n' IFS=$' '$'\t'$'\n'
local cur="${COMP_WORDS[COMP_CWORD]}"
for s in $1
do
__autopkgcomp_words_include "$s" && continue
list="$list$s$sep"
done
IFS="$sep"
COMPREPLY=($(compgen -W "$list" -- "$cur"))
}
_scriptoriumcomp_scripts() {
# build a list of scripts
local scripts="$(ls ~/work/test/XML)"
COMPREPLY=($(compgen -W "$scripts" -- "$cur"))
}
# one function for each scriptorium command
_scriptorium_add() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
--*) __scriptoriumcomp "--help --after --before --category --dont-commit \
--filename --message --notes --push --reboot --zero"
return
;;
esac
}
_scriptorium_commit() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
--*) __scriptoriumcomp "--help --push --message"
return
;;
esac
}
_scriptorium_down() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
--*) __scriptoriumcomp "--help --no-force"
return
;;
'"'*)
esac
}
_scriptorium_git() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
--*)
__scriptoriumcomp "--help --command"
return
;;
esac
}
_scriptorium_list() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
--*)
__scriptoriumcomp "--help"
return
;;
esac
}
_scriptorium_git() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
--*)
__scriptoriumcomp "--help --command"
return
;;
esac
}
_scriptorium_push() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
--*)
__scriptoriumcomp "--help"
return
;;
esac
}
_scriptorium_delete() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
--*) __scriptoriumcomp "--help --dont-commit --message --push"
return
;;
esac
}
_scriptorium_rename() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
--*)
__scriptoriumcomp "--help --dont-commit --message --push"
return
;;
esac
}
_scriptorium_up() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
--*) __scriptoriumcomp "--help"
return
;;
esac
}
_scriptorium_verify() {
local cur="${COMP_WORDS[COMP_CWORD]}"
case "$cur" in
--*) __scriptoriumcomp "--help --diff --quick --script"
return
;;
esac
}
_scriptorium(){
local cur prev opts
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
if [[ "$COMP_CWORD" = "1" ]] # we are matching the command
then
opts="add commit down git list push remove rename up verify"
COMPREPLY=( $(compgen -W "${opts}" ${cur}) )
return 0
fi
cmd="${COMP_WORDS[1]}"
case "$cmd" in
add) _scriptorium_add ;;
commit) _scriptorium_commit ;;
down) _scriptorium_down ;;
git) _scriptorium_git ;;
list) _scriptorium_list ;;
push) _scriptorium_push ;;
delete) _scriptorium_delete ;;
rename) _scriptorium_rename ;;
up) _scriptorium_up ;;
verify) _scriptorium_verify ;;
*)
esac
}
complete -o bashdefault -o default -F _scriptorium scriptorium