##// END OF EJS Templates
Fix completion function for 'hg pull'. Fix truncation bug and remove tabs.
Steve Borho -
r1368:d1d605d1 default
parent child Browse files
Show More
@@ -16,34 +16,34 b' local curcontext="$curcontext" state lin'
16 16 typeset -A opt_args
17 17 local subcmds repos tags newFiles addedFiles
18 18
19 tags=($(hg tags 2> /dev/null | sed -e 's/[0-9]*:[a-f0-9]\{40\}$//; s/ *$//
19 tags=($(hg tags 2> /dev/null | sed -e 's/[0-9]*:[a-f0-9]\{40\}$//; s/ *$//'))
20 20 subcmds=($(hg -v help | sed -e '1,/^list of commands:/d' \
21 21 -e '/^global options:/,$d' -e '/^ [^ ]/!d; s/[,:]//g;'))
22 22
23 23 if [[ $service == "hg" ]]; then
24 _arguments -C -A "-*" \
25 '-R+[repository root directory]' \
26 '-y[non-interactive]' \
27 '-v[verbose]' \
28 '-q[quiet]' \
29 '--time[time how long the command takes]' \
30 '--profile[profile]' \
31 '-h-[display help and exit]' \
32 '--version-[output version information and exit]' \
24 _arguments -C -A "-*" \
25 '-R+[repository root directory]' \
26 '-y[non-interactive]' \
27 '-v[verbose]' \
28 '-q[quiet]' \
29 '--time[time how long the command takes]' \
30 '--profile[profile]' \
31 '-h-[display help and exit]' \
32 '--version-[output version information and exit]' \
33 33 '--cwd[change working directory]:new working directory:_files -/' \
34 '*::command:->subcmd' && return 0
34 '*::command:->subcmd' && return 0
35 35
36 if (( CURRENT == 1 )); then
37 _wanted commands expl 'hg command' compadd -a subcmds
38 return
39 fi
40 service="$words[1]"
41 curcontext="${curcontext%:*}=$service:"
36 if (( CURRENT == 1 )); then
37 _wanted commands expl 'hg command' compadd -a subcmds
38 return
39 fi
40 service="$words[1]"
41 curcontext="${curcontext%:*}=$service:"
42 42 fi
43 43
44 44 case $service in
45 45 (addremove)
46 _arguments \
46 _arguments \
47 47 '-I[include path in search]:dir:_files -W $(hg root) -/' \
48 48 '-X[exclude path in search]:dir:_files -W $(hg root) -/' \
49 49 '*:directories:_files -/' # assume they want to add/remove a dir
@@ -51,106 +51,106 b' case $service in'
51 51
52 52 (add)
53 53 newFiles=( $(hg status -un) )
54 _arguments \
54 _arguments \
55 55 '-I[include path in search]:dir:_files -W $(hg root) -/' \
56 56 '-X[exclude path in search]:dir:_files -W $(hg root) -/'
57 57 _wanted files expl 'unknown files' compadd -a newFiles
58 58 ;;
59 59
60 60 (remove|rm)
61 _arguments \
61 _arguments \
62 62 '-I[include path in search]:dir:_files -W $(hg root) -/' \
63 63 '-X[exclude path in search]:dir:_files -W $(hg root) -/' \
64 64 '*:file:_files'
65 65 ;;
66 66
67 (cat)
68 _arguments \
67 (cat)
68 _arguments \
69 69 '-I[include path in search]:dir:_files -W $(hg root) -/' \
70 70 '-X[exclude path in search]:dir:_files -W $(hg root) -/' \
71 71 '-o[output to file]:file:' \
72 72 '-r[revision]:revision:($tags)' \
73 73 '*:file:_files'
74 ;;
74 ;;
75 75
76 (checkout|update|up|co)
77 _arguments \
76 (checkout|update|up|co)
77 _arguments \
78 78 '-b[checkout the head of a specific branch]:tag:' \
79 79 '-m[allow merging of conflicts]' \
80 80 '-C[overwrite locally modified files]' \
81 81 '*:revision:->revs'
82 82 _wanted revs expl 'revision or tag' compadd -a tags
83 ;;
83 ;;
84 84
85 (commit|ci)
86 _arguments \
85 (commit|ci)
86 _arguments \
87 87 '-I[include path in search]:dir:_files -W $(hg root) -/' \
88 88 '-X[exclude path in search]:dir:_files -W $(hg root) -/' \
89 '-A[run addremove during commit]' \
90 '-m[commit message]:string:' \
91 '-d[date code]:string:' \
92 '-u[user]:string:' \
89 '-A[run addremove during commit]' \
90 '-m[commit message]:string:' \
91 '-d[date code]:string:' \
92 '-u[user]:string:' \
93 93 '*:file:_files'
94 ;;
94 ;;
95 95
96 (tag)
97 _arguments \
98 '-l[make the tag local]:' \
99 '-m[commit message]:string:' \
100 '-d[date code]:string:' \
101 '-u[user]:string:' \
96 (tag)
97 _arguments \
98 '-l[make the tag local]:' \
99 '-m[commit message]:string:' \
100 '-d[date code]:string:' \
101 '-u[user]:string:' \
102 102 '*:name and revision:'
103 ;;
103 ;;
104 104
105 (clone)
106 _arguments \
107 '-U[skip update after cloning]' \
108 '-e[ssh command]:string:' \
109 '--pull[use pull protocol to copy metadata]' \
110 '--remotecmd[remote hg command]:command:->subcmd'
111 ;;
105 (clone)
106 _arguments \
107 '-U[skip update after cloning]' \
108 '-e[ssh command]:string:' \
109 '--pull[use pull protocol to copy metadata]' \
110 '--remotecmd[remote hg command]:command:->subcmd'
111 ;;
112 112
113 (export)
114 _arguments \
113 (export)
114 _arguments \
115 115 '-o[output to a file]:file:' \
116 116 '-a-[tread all files as text]' \
117 117 '*:revision:->revs'
118 118 _wanted revs expl 'revision or tag' compadd -a tags
119 ;;
120
121 (heads)
122 _arguments '-b[find branch info]'
123 ;;
119 ;;
124 120
125 (outgoing|out)
126 _arguments '-p[show patch]'
127 ;;
121 (heads)
122 _arguments '-b[find branch info]'
123 ;;
128 124
129 (paths)
130 _arguments '*:symbolic name:(default default-push)'
131 ;;
132
133 (init)
134 _arguments '*:new repo directory:_files -/'
125 (outgoing|out)
126 _arguments '-p[show patch]'
135 127 ;;
136 128
137 (unbundle)
129 (paths)
130 _arguments '*:symbolic name:(default default-push)'
131 ;;
132
133 (init)
134 _arguments '*:new repo directory:_files -/'
135 ;;
136
137 (unbundle)
138 138 _arguments '*:changegroup file:_files'
139 139 ;;
140 140
141 (manifest)
142 _arguments \
141 (manifest)
142 _arguments \
143 143 '*:revision:->revs'
144 144 _wanted revs expl 'revision or tag' compadd -a tags
145 145 ;;
146 146
147 (parents)
148 _arguments \
147 (parents)
148 _arguments \
149 149 '*:revision:->revs'
150 150 _wanted revs expl 'revision or tag' compadd -a tags
151 151 ;;
152 152
153 (serve)
153 (serve)
154 154 _arguments \
155 155 '-A[access log file]:log file:_files' \
156 156 '-E[error log file]:log file:_files' \
@@ -163,34 +163,34 b' case $service in'
163 163 '-6[use IPv6 in addition to IPv4]'
164 164 ;;
165 165
166 (pull)
166 (pull)
167 167 repos=( $(hg paths | sed -e 's/^.*= //') )
168 _arguments \
168 _arguments \
169 169 '-u[update working directory]' \
170 170 '-e[ssh command]:remote commands:' \
171 '--remotecmd[remote hg command]:command:->subcmd' \
171 '--remotecmd[remote hg command]:command:->subcmd' \
172 172 '*:pull source:->repo'
173 _wanted source expl 'source repository' compadd -a repos
173 _wanted source expl 'source repository' compadd -a repos
174 174 ;;
175 175
176 (pull)
176 (push)
177 177 repos=( $(hg paths | sed -e 's/^.*= //') )
178 _arguments \
178 _arguments \
179 179 '-f[force push]' \
180 180 '-e[ssh command]:remote commands:' \
181 '--remotecmd[remote hg command]:command:->subcmd' \
181 '--remotecmd[remote hg command]:command:->subcmd' \
182 182 '*:pull source:->repo'
183 _wanted source expl 'source repository' compadd -a repos
183 _wanted source expl 'source repository' compadd -a repos
184 184 ;;
185 185
186 (id|identify)
187 ;;
186 (id|identify)
187 ;;
188 188
189 (recover)
190 ;;
189 (recover)
190 ;;
191 191
192 (rawcommit)
193 _arguments \
192 (rawcommit)
193 _arguments \
194 194 '-p[parent]:revision:($tags)' \
195 195 '-d[date]:date:' \
196 196 '-u[user]:user:' \
@@ -198,71 +198,71 b' case $service in'
198 198 '-m[commit message]:string:' \
199 199 '-l[commit message file]:message file:_files -g *.txt' \
200 200 '*:files to commit:_files'
201 ;;
201 ;;
202 202
203 (copy|cp)
204 _arguments \
203 (copy|cp)
204 _arguments \
205 205 '-I[include path in search]:dir:_files -W $(hg root) -/' \
206 206 '-X[exclude path in search]:dir:_files -W $(hg root) -/' \
207 207 '-A-[record a copy after it has happened]' \
208 208 '-f[replace destination if it exists]' \
209 209 '-p[append source path to dest]' \
210 210 '*:destination:'
211 ;;
211 ;;
212 212
213 (rename|mv)
214 _arguments \
213 (rename|mv)
214 _arguments \
215 215 '-I[include path in search]:dir:_files -W $(hg root) -/' \
216 216 '-X[exclude path in search]:dir:_files -W $(hg root) -/' \
217 217 '-A-[record a copy after it has happened]' \
218 218 '-f[replace destination if it exists]' \
219 219 '-p[append source path to dest]' \
220 220 '*:destination:'
221 ;;
221 ;;
222 222
223 (forget)
223 (forget)
224 224 addedFiles=( $(hg status -an) )
225 _arguments \
225 _arguments \
226 226 '-I[include path in search]:dir:_files -W $(hg root) -/' \
227 227 '-X[exclude path in search]:dir:_files -W $(hg root) -/'
228 228 _wanted files expl 'newly added files' compadd -a addedFiles
229 ;;
229 ;;
230 230
231 (import|patch)
232 _arguments \
231 (import|patch)
232 _arguments \
233 233 '-p[path strip (default: 1)]:count:' \
234 234 '-f[skip check for outstanding changes]' \
235 235 '-b[base path]:file:_files -W $(hg root)' \
236 236 '*:patch file:_files'
237 ;;
237 ;;
238 238
239 (incoming|in)
240 _arguments \
239 (incoming|in)
240 _arguments \
241 241 '-p[show patch]' \
242 242 '*:mercurial repository:_files'
243 ;;
243 ;;
244 244
245 (diff)
246 _arguments \
245 (diff)
246 _arguments \
247 247 '-I[include path in search]:dir:_files -W $(hg root) -/' \
248 248 '-X[exclude path in search]:dir:_files -W $(hg root) -/' \
249 249 '-r[revision]:revision:($tags)' \
250 250 '-a-[tread all files as text]' \
251 251 '*:file:_files'
252 ;;
252 ;;
253 253
254 (log|history)
255 _arguments \
254 (log|history)
255 _arguments \
256 256 '-I[include path in search]:dir:_files -W $(hg root) -/' \
257 257 '-X[exclude path in search]:dir:_files -W $(hg root) -/' \
258 258 '-r[revision]:revision:($tags)' \
259 259 '-b[show branches]' \
260 260 '-p[show patch]' \
261 261 '*:file:_files'
262 ;;
262 ;;
263 263
264 (grep)
265 _arguments \
264 (grep)
265 _arguments \
266 266 '-I[include path in search]:dir:_files -W $(hg root) -/' \
267 267 '-X[exclude path in search]:dir:_files -W $(hg root) -/' \
268 268 '-0[end fields with NUL]' \
@@ -273,10 +273,10 b' case $service in'
273 273 '-r[search in revision rev]:revision:($tags)' \
274 274 '-u[print user who made change]' \
275 275 '*:search pattern, then files:_files'
276 ;;
276 ;;
277 277
278 (status)
279 _arguments \
278 (status)
279 _arguments \
280 280 '-I[include path in search]:dir:_files -W $(hg root) -/' \
281 281 '-X[exclude path in search]:dir:_files -W $(hg root) -/' \
282 282 '-0[end filenames with NUL]' \
@@ -286,27 +286,27 b' case $service in'
286 286 '-u[show only unknown files]' \
287 287 '-n[hide status prefix]' \
288 288 '*:search pattern, then files:_files'
289 ;;
289 ;;
290 290
291 (locate)
292 _arguments \
291 (locate)
292 _arguments \
293 293 '-r[search in revision rev]:revision:($tags)' \
294 294 '-0[end fields with NUL]' \
295 295 '-f[print complete paths]' \
296 296 '-I[include path in search]:dir:_files -W $(hg root) -/' \
297 297 '-X[exclude path in search]:dir:_files -W $(hg root) -/' \
298 298 '*:search pattern:'
299 ;;
299 ;;
300 300
301 (help)
302 _wanted commands expl 'hg command' compadd -a subcmds
303 ;;
301 (help)
302 _wanted commands expl 'hg command' compadd -a subcmds
303 ;;
304 304
305 305 (root|undo|view|verify|version)
306 306 # no arguments for these commands
307 307 ;;
308 308
309 (*)
310 _message "unknown hg command completion: $service"
311 ;;
309 (*)
310 _message "unknown hg command completion: $service"
311 ;;
312 312 esac
General Comments 0
You need to be logged in to leave comments. Login now