##// END OF EJS Templates
zsh_completion: add -l/--list flag for hg bookmarks completion...
av6 -
r40372:d365e2b7 default
parent child Browse files
Show More
@@ -1,1324 +1,1325 b''
1 1 #compdef hg
2 2
3 3 # Zsh completion script for mercurial. Rename this file to _hg and copy
4 4 # it into your zsh function path (/usr/share/zsh/site-functions for
5 5 # instance)
6 6 #
7 7 # If you do not want to install it globally, you can copy it somewhere
8 8 # else and add that directory to $fpath. This must be done before
9 9 # compinit is called. If the file is copied to ~/.zsh.d, your ~/.zshrc
10 10 # file could look like this:
11 11 #
12 12 # fpath=("$HOME/.zsh.d" $fpath)
13 13 # autoload -U compinit
14 14 # compinit
15 15 #
16 16 # Copyright (C) 2005, 2006 Steve Borho <steve@borho.org>
17 17 # Copyright (C) 2006-10 Brendan Cully <brendan@kublai.com>
18 18 #
19 19 # Permission is hereby granted, without written agreement and without
20 20 # licence or royalty fees, to use, copy, modify, and distribute this
21 21 # software and to distribute modified versions of this software for any
22 22 # purpose, provided that the above copyright notice and the following
23 23 # two paragraphs appear in all copies of this software.
24 24 #
25 25 # In no event shall the authors be liable to any party for direct,
26 26 # indirect, special, incidental, or consequential damages arising out of
27 27 # the use of this software and its documentation, even if the authors
28 28 # have been advised of the possibility of such damage.
29 29 #
30 30 # The authors specifically disclaim any warranties, including, but not
31 31 # limited to, the implied warranties of merchantability and fitness for
32 32 # a particular purpose. The software provided hereunder is on an "as
33 33 # is" basis, and the authors have no obligation to provide maintenance,
34 34 # support, updates, enhancements, or modifications.
35 35
36 36 emulate -LR zsh
37 37 setopt extendedglob
38 38
39 39 local curcontext="$curcontext" state line
40 40 typeset -A _hg_cmd_globals
41 41
42 42 _hg() {
43 43 local cmd _hg_root
44 44 integer i=2
45 45 _hg_cmd_globals=()
46 46
47 47 while (( i < $#words ))
48 48 do
49 49 case "$words[$i]" in
50 50 -R|--repository)
51 51 eval _hg_root="$words[$i+1]"
52 52 _hg_cmd_globals+=("$words[$i]" "$_hg_root")
53 53 (( i += 2 ))
54 54 continue
55 55 ;;
56 56 -R*)
57 57 _hg_cmd_globals+="$words[$i]"
58 58 eval _hg_root="${words[$i]#-R}"
59 59 (( i++ ))
60 60 continue
61 61 ;;
62 62 --cwd|--config)
63 63 # pass along arguments to hg completer
64 64 _hg_cmd_globals+=("$words[$i]" "$words[$i+1]")
65 65 (( i += 2 ))
66 66 continue
67 67 ;;
68 68 -*)
69 69 # skip option
70 70 (( i++ ))
71 71 continue
72 72 ;;
73 73 esac
74 74 if [[ -z "$cmd" ]]
75 75 then
76 76 cmd="$words[$i]"
77 77 words[$i]=()
78 78 (( CURRENT-- ))
79 79 fi
80 80 (( i++ ))
81 81 done
82 82
83 83 if [[ -z "$cmd" ]]
84 84 then
85 85 _arguments -s -S : $_hg_global_opts \
86 86 ':mercurial command:_hg_commands'
87 87 return
88 88 fi
89 89
90 90 # resolve abbreviations and aliases
91 91 if ! (( $+functions[_hg_cmd_${cmd}] ))
92 92 then
93 93 local cmdexp
94 94 (( $#_hg_cmd_list )) || _hg_get_commands
95 95
96 96 cmdexp=$_hg_cmd_list[(r)${cmd}*]
97 97 if [[ $cmdexp == $_hg_cmd_list[(R)${cmd}*] ]]
98 98 then
99 99 # might be nice to rewrite the command line with the expansion
100 100 cmd="$cmdexp"
101 101 fi
102 102 if [[ -n $_hg_alias_list[$cmd] ]]
103 103 then
104 104 cmd=$_hg_alias_list[$cmd]
105 105 fi
106 106 fi
107 107
108 108 curcontext="${curcontext%:*:*}:hg-${cmd}:"
109 109
110 110 zstyle -s ":completion:$curcontext:" cache-policy update_policy
111 111
112 112 if [[ -z "$update_policy" ]]
113 113 then
114 114 zstyle ":completion:$curcontext:" cache-policy _hg_cache_policy
115 115 fi
116 116
117 117 if (( $+functions[_hg_cmd_${cmd}] ))
118 118 then
119 119 _hg_cmd_${cmd}
120 120 else
121 121 # complete unknown commands normally
122 122 _arguments -s -S : $_hg_global_opts \
123 123 '*:files:_hg_files'
124 124 fi
125 125 }
126 126
127 127 _hg_cache_policy() {
128 128 typeset -a old
129 129
130 130 # cache for a minute
131 131 old=( "$1"(mm+10) )
132 132 (( $#old )) && return 0
133 133
134 134 return 1
135 135 }
136 136
137 137 _hg_get_commands() {
138 138 typeset -ga _hg_cmd_list
139 139 typeset -gA _hg_alias_list
140 140 local hline cmd cmdalias
141 141
142 142 _call_program hg HGPLAINEXCEPT=alias hg debugcomplete -v | while read -A hline
143 143 do
144 144 cmd=$hline[1]
145 145 _hg_cmd_list+=($cmd)
146 146
147 147 for cmdalias in $hline[2,-1]
148 148 do
149 149 _hg_cmd_list+=($cmdalias)
150 150 _hg_alias_list+=($cmdalias $cmd)
151 151 done
152 152 done
153 153 }
154 154
155 155 _hg_commands() {
156 156 (( $#_hg_cmd_list )) || _hg_get_commands
157 157 _describe -t commands 'mercurial command' _hg_cmd_list
158 158 }
159 159
160 160 _hg_revrange() {
161 161 compset -P 1 '*:'
162 162 _hg_labels "$@"
163 163 }
164 164
165 165 _hg_labels() {
166 166 labels=("${(f)$(_hg_cmd debugnamecomplete)}")
167 167 (( $#labels )) && _describe -t labels 'labels' labels
168 168 }
169 169
170 170 _hg_bookmarks() {
171 171 typeset -a bookmark bookmarks
172 172
173 173 _hg_cmd bookmarks | while read -A bookmark
174 174 do
175 175 if test -z ${bookmark[-1]:#[0-9]*}
176 176 then
177 177 bookmarks+=($bookmark[-2])
178 178 fi
179 179 done
180 180 (( $#bookmarks )) && _describe -t bookmarks 'bookmarks' bookmarks
181 181 }
182 182
183 183 _hg_branches() {
184 184 typeset -a branches
185 185 local branch
186 186
187 187 _hg_cmd branches | while read branch
188 188 do
189 189 branches+=(${branch/ #[0-9]#:*})
190 190 done
191 191 (( $#branches )) && _describe -t branches 'branches' branches
192 192 }
193 193
194 194 # likely merge candidates
195 195 _hg_mergerevs() {
196 196 typeset -a heads branches
197 197 local revset='sort(head() and not ., -rev)'
198 198
199 199 heads=(${(f)"$(_hg_cmd log -r '$revset' --template '{rev}:{branch}\\n')"})
200 200 (( $#heads )) && _describe -t heads 'heads' heads
201 201
202 202 branches=(${(S)heads/#*:/})
203 203 (( $#branches )) && _describe -t branches 'branches' branches
204 204 }
205 205
206 206 _hg_files() {
207 207 if [[ -n "$_hg_root" ]]
208 208 then
209 209 [[ -d "$_hg_root/.hg" ]] || return
210 210 case "$_hg_root" in
211 211 /*)
212 212 _files -W $_hg_root
213 213 ;;
214 214 *)
215 215 _files -W $PWD/$_hg_root
216 216 ;;
217 217 esac
218 218 else
219 219 _files
220 220 fi
221 221 }
222 222
223 223 _hg_status() {
224 224 [[ -d $PREFIX ]] || PREFIX=$PREFIX:h
225 225 status_files=(${(ps:\0:)"$(_hg_cmd status -0n$1 ./$PREFIX)"})
226 226 }
227 227
228 228 _hg_unknown() {
229 229 typeset -a status_files
230 230 _hg_status u
231 231 _wanted files expl 'unknown files' _multi_parts / status_files
232 232 }
233 233
234 234 _hg_missing() {
235 235 typeset -a status_files
236 236 _hg_status d
237 237 _wanted files expl 'missing files' _multi_parts / status_files
238 238 }
239 239
240 240 _hg_committable() {
241 241 typeset -a status_files
242 242 _hg_status mar
243 243 _wanted files expl 'modified, added or removed files' _multi_parts / status_files
244 244 }
245 245
246 246 _hg_resolve() {
247 247 local rstate rpath
248 248
249 249 [[ -d $PREFIX ]] || PREFIX=$PREFIX:h
250 250
251 251 _hg_cmd resolve -l ./$PREFIX | while read rstate rpath
252 252 do
253 253 [[ $rstate == 'R' ]] && resolved_files+=($rpath)
254 254 [[ $rstate == 'U' ]] && unresolved_files+=($rpath)
255 255 done
256 256 }
257 257
258 258 _hg_resolved() {
259 259 typeset -a resolved_files unresolved_files
260 260 _hg_resolve
261 261 _wanted files expl 'resolved files' _multi_parts / resolved_files
262 262 }
263 263
264 264 _hg_unresolved() {
265 265 typeset -a resolved_files unresolved_files
266 266 _hg_resolve
267 267 _wanted files expl 'unresolved files' _multi_parts / unresolved_files
268 268 }
269 269
270 270 _hg_config() {
271 271 typeset -a items
272 272 items=(${${(%f)"$(_call_program hg hg showconfig)"}%%\=*})
273 273 (( $#items )) && _describe -t config 'config item' items
274 274 }
275 275
276 276 _hg_internal_merge_tools=(
277 277 \\:dump \\:fail \\:forcedump \\:local \\:merge \\:merge-local \\:merge-other
278 278 \\:merge3 \\:other \\:prompt \\:tagmerge \\:union
279 279 )
280 280
281 281 _hg_merge_tools() {
282 282 typeset -a external_tools
283 283 _describe -t internal_tools 'internal merge tools' _hg_internal_merge_tools
284 284 external_tools=(${(f)"$(_hg_cmd showconfig merge-tools | cut -d . -f 2)"})
285 285 (( $#external_tools )) && _describe -t external_tools 'external merge tools' external_tools
286 286 }
287 287
288 288 _hg_shelves() {
289 289 shelves=("${(f)$(_hg_cmd shelve -ql)}")
290 290 (( $#shelves )) && _describe -t shelves 'shelves' shelves
291 291 }
292 292
293 293 _hg_addremove() {
294 294 _alternative 'files:unknown files:_hg_unknown' \
295 295 'files:missing files:_hg_missing'
296 296 }
297 297
298 298 _hg_ssh_urls() {
299 299 if [[ -prefix */ ]]
300 300 then
301 301 if zstyle -T ":completion:${curcontext}:files" remote-access
302 302 then
303 303 local host=${PREFIX%%/*}
304 304 typeset -a remdirs
305 305 compset -p $(( $#host + 1 ))
306 306 local rempath=${(M)PREFIX##*/}
307 307 local cacheid="hg:${host}-${rempath//\//_}"
308 308 cacheid=${cacheid%[-_]}
309 309 compset -P '*/'
310 310 if _cache_invalid "$cacheid" || ! _retrieve_cache "$cacheid"
311 311 then
312 312 remdirs=(${${(M)${(f)"$(_call_program files ssh -a -x $host ls -1FL "${(q)rempath}")"}##*/}%/})
313 313 _store_cache "$cacheid" remdirs
314 314 fi
315 315 _describe -t directories 'remote directory' remdirs -S/
316 316 else
317 317 _message 'remote directory'
318 318 fi
319 319 else
320 320 if compset -P '*@'
321 321 then
322 322 _hosts -S/
323 323 else
324 324 _alternative 'hosts:remote host name:_hosts -S/' \
325 325 'users:user:_users -S@'
326 326 fi
327 327 fi
328 328 }
329 329
330 330 _hg_urls() {
331 331 if compset -P bundle://
332 332 then
333 333 _files
334 334 elif compset -P ssh://
335 335 then
336 336 _hg_ssh_urls
337 337 elif [[ -prefix *: ]]
338 338 then
339 339 _urls
340 340 else
341 341 local expl
342 342 compset -S '[^:]*'
343 343 _wanted url-schemas expl 'URL schema' compadd -S '' - \
344 344 http:// https:// ssh:// bundle://
345 345 fi
346 346 }
347 347
348 348 _hg_paths() {
349 349 typeset -a paths pnames
350 350 _hg_cmd paths | while read -A pnames
351 351 do
352 352 paths+=($pnames[1])
353 353 done
354 354 (( $#paths )) && _describe -t path-aliases 'repository alias' paths
355 355 }
356 356
357 357 _hg_remote() {
358 358 _alternative 'path-aliases:repository alias:_hg_paths' \
359 359 'directories:directory:_files -/' \
360 360 'urls:URL:_hg_urls'
361 361 }
362 362
363 363 _hg_clone_dest() {
364 364 _alternative 'directories:directory:_files -/' \
365 365 'urls:URL:_hg_urls'
366 366 }
367 367
368 368 _hg_add_help_topics=(
369 369 config dates diffs environment extensions filesets glossary hgignore hgweb
370 370 merge-tools multirevs obsolescence patterns phases revisions revsets
371 371 subrepos templating urls
372 372 )
373 373
374 374 _hg_help_topics() {
375 375 local topics
376 376 (( $#_hg_cmd_list )) || _hg_get_commands
377 377 topics=($_hg_cmd_list $_hg_add_help_topics)
378 378 _describe -t help_topics 'help topics' topics
379 379 }
380 380
381 381 # Common options
382 382 _hg_global_opts=(
383 383 '(--repository -R)'{-R+,--repository=}'[repository root directory or name of overlay bundle file]:repository:_files -/'
384 384 '--cwd=[change working directory]:new working directory:_files -/'
385 385 '(--noninteractive -y)'{-y,--noninteractive}'[do not prompt, automatically pick the first choice for all prompts]'
386 386 '(--verbose -v)'{-v,--verbose}'[enable additional output]'
387 387 '*--config=[set/override config option]:defined config items:_hg_config'
388 388 '(--quiet -q)'{-q,--quiet}'[suppress output]'
389 389 '(--help -h)'{-h,--help}'[display help and exit]'
390 390 '--debug[enable debugging output]'
391 391 '--debugger[start debugger]'
392 392 '--encoding=[set the charset encoding]:encoding'
393 393 '--encodingmode=[set the charset encoding mode]:encoding mode'
394 394 '--traceback[always print a traceback on exception]'
395 395 '--time[time how long the command takes]'
396 396 '--profile[print command execution profile]'
397 397 '--version[output version information and exit]'
398 398 '--hidden[consider hidden changesets]'
399 399 '--color=[when to colorize]:when:(true false yes no always auto never debug)'
400 400 '--pager=[when to paginate (default: auto)]:when:(true false yes no always auto never)'
401 401 )
402 402
403 403 _hg_pat_opts=(
404 404 '*'{-I+,--include=}'[include names matching the given patterns]:pattern:_files -W $(_hg_cmd root) -/'
405 405 '*'{-X+,--exclude=}'[exclude names matching the given patterns]:pattern:_files -W $(_hg_cmd root) -/')
406 406
407 407 _hg_date_user_opts=(
408 408 '(--currentdate -D)'{-D,--currentdate}'[record the current date as commit date]'
409 409 '(--currentuser -U)'{-U,--currentuser}'[record the current user as committer]'
410 410 '(--date -d)'{-d+,--date=}'[record the specified date as commit date]:date'
411 411 '(--user -u)'{-u+,--user=}'[record the specified user as committer]:user')
412 412
413 413 _hg_gitlike_opts=(
414 414 '(--git -g)'{-g,--git}'[use git extended diff format]')
415 415
416 416 _hg_diff_opts=(
417 417 $_hg_gitlike_opts
418 418 '(--text -a)'{-a,--text}'[treat all files as text]'
419 419 '--binary[generate binary diffs in git mode (default)]'
420 420 '--nodates[omit dates from diff headers]'
421 421 )
422 422
423 423 _hg_mergetool_opts=(
424 424 '(--tool -t)'{-t+,--tool=}'[specify merge tool]:merge tool:_hg_merge_tools'
425 425 )
426 426
427 427 _hg_dryrun_opts=(
428 428 '(--dry-run -n)'{-n,--dry-run}'[do not perform actions, just print output]')
429 429
430 430 _hg_ignore_space_opts=(
431 431 '(--ignore-all-space -w)'{-w,--ignore-all-space}'[ignore white space when comparing lines]'
432 432 '(--ignore-space-change -b)'{-b,--ignore-space-change}'[ignore changes in the amount of white space]'
433 433 '(--ignore-blank-lines -B)'{-B,--ignore-blank-lines}'[ignore changes whose lines are all blank]'
434 434 '(--ignore-space-at-eol -Z)'{-Z,--ignore-space-at-eol}'[ignore changes in whitespace at EOL]'
435 435 )
436 436
437 437 _hg_template_opts=(
438 438 '(--template -T)'{-T+,--template=}'[display with template]:template'
439 439 )
440 440
441 441 _hg_log_opts=(
442 442 $_hg_global_opts $_hg_template_opts $_hg_gitlike_opts
443 443 '(--limit -l)'{-l+,--limit=}'[limit number of changes displayed]:limit'
444 444 '(--no-merges -M)'{-M,--no-merges}'[do not show merges]'
445 445 '(--patch -p)'{-p,--patch}'[show patch]'
446 446 '--stat[output diffstat-style summary of changes]'
447 447 '(--graph -G)'{-G,--graph}'[show the revision DAG]'
448 448 )
449 449
450 450 _hg_commit_opts=(
451 451 '(-m --message -l --logfile --edit -e)'{-e,--edit}'[edit commit message]'
452 452 '(-e --edit -l --logfile --message -m)'{-m+,--message=}'[use <text> as commit message]:message'
453 453 '(-e --edit -m --message --logfile -l)'{-l+,--logfile=}'[read the commit message from <file>]:log file:_files')
454 454
455 455 _hg_remote_opts=(
456 456 '(--ssh -e)'{-e+,--ssh=}'[specify ssh command to use]:command'
457 457 '--remotecmd=[specify hg command to run on the remote side]:remote command'
458 458 '--insecure[do not verify server certificate (ignoring web.cacerts config)]'
459 459 )
460 460
461 461 _hg_clone_opts=(
462 462 $_hg_remote_opts
463 463 '(--noupdate -U)'{-U,--noupdate}'[do not update the new working directory]'
464 464 '--pull[use pull protocol to copy metadata]'
465 465 '--stream[clone with minimal data processing]'
466 466 )
467 467
468 468 _hg_subrepos_opts=(
469 469 '(--subrepos -S)'{-S,--subrepos}'[recurse into subrepositories]')
470 470
471 471 _hg_cmd() {
472 472 _call_program hg HGPLAIN=1 hg "$_hg_cmd_globals[@]" "$@" 2> /dev/null
473 473 }
474 474
475 475 _hg_cmd_add() {
476 476 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts $_hg_subrepos_opts \
477 477 '*:unknown files:_hg_unknown'
478 478 }
479 479
480 480 _hg_cmd_addremove() {
481 481 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts $_hg_subrepos_opts \
482 482 '(--similarity -s)'{-s+,--similarity=}'[guess renamed files by similarity (0<=s<=100)]:similarity' \
483 483 '*:unknown or missing files:_hg_addremove'
484 484 }
485 485
486 486 _hg_cmd_annotate() {
487 487 _arguments -s -S : $_hg_global_opts $_hg_ignore_space_opts $_hg_pat_opts \
488 488 '(--rev -r)'{-r+,--rev=}'[annotate the specified revision]:revision:_hg_labels' \
489 489 "--no-follow[don't follow copies and renames]" \
490 490 '(--text -a)'{-a,--text}'[treat all files as text]' \
491 491 '(--user -u)'{-u,--user}'[list the author (long with -v)]' \
492 492 '(--file -f)'{-f,--file}'[list the filename]' \
493 493 '(--date -d)'{-d,--date}'[list the date (short with -q)]' \
494 494 '(--number -n)'{-n,--number}'[list the revision number (default)]' \
495 495 '(--changeset -c)'{-c,--changeset}'[list the changeset]' \
496 496 '(--line-number -l)'{-l,--line-number}'[show line number at the first appearance]' \
497 497 '*:files:_hg_files'
498 498 }
499 499
500 500 _hg_cmd_archive() {
501 501 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_subrepos_opts \
502 502 '--no-decode[do not pass files through decoders]' \
503 503 '(--prefix -p)'{-p+,--prefix=}'[directory prefix for files in archive]:prefix' \
504 504 '(--rev -r)'{-r+,--rev=}'[revision to distribute]:revision:_hg_labels' \
505 505 '(--type -t)'{-t+,--type=}'[type of distribution to create]:archive type:(files tar tbz2 tgz uzip zip)' \
506 506 '*:destination:_files'
507 507 }
508 508
509 509 _hg_cmd_backout() {
510 510 _arguments -s -S : $_hg_global_opts $_hg_mergetool_opts $_hg_pat_opts \
511 511 '--merge[merge with old dirstate parent after backout]' \
512 512 '--no-commit[do not commit]' \
513 513 '(--date -d)'{-d+,--date=}'[record the specified date as commit date]:date' \
514 514 '(--user -u)'{-u+,--user=}'[record the specified user as committer]:user' \
515 515 '(--rev -r 1)'{-r+,--rev=}'[revision to backout]:revision:_hg_labels' \
516 516 '(--message -m)'{-m+,--message=}'[use <text> as commit message]:text' \
517 517 '(--logfile -l)'{-l+,--logfile=}'[read commit message from <file>]:log file:_files' \
518 518 ':revision:_hg_labels'
519 519 }
520 520
521 521 _hg_cmd_bisect() {
522 522 _arguments -s -S : $_hg_global_opts \
523 523 '(-)'{-r,--reset}'[reset bisect state]' \
524 524 '(--extend -e)'{-e,--extend}'[extend the bisect range]' \
525 525 '(--good -g --bad -b --skip -s --reset -r)'{-g,--good}'[mark changeset good]'::revision:_hg_labels \
526 526 '(--good -g --bad -b --skip -s --reset -r)'{-b,--bad}'[mark changeset bad]'::revision:_hg_labels \
527 527 '(--good -g --bad -b --skip -s --reset -r)'{-s,--skip}'[skip testing changeset]' \
528 528 '(--command -c --noupdate -U)'{-c+,--command=}'[use command to check changeset state]':commands:_command_names \
529 529 '(--command -c --noupdate -U)'{-U,--noupdate}'[do not update to target]'
530 530 }
531 531
532 532 _hg_cmd_bookmarks() {
533 533 _arguments -s -S : $_hg_global_opts \
534 534 '(--force -f)'{-f,--force}'[force]' \
535 '(--inactive -i)'{-i,--inactive}'[mark a bookmark inactive]' \
536 '(--rev -r --delete -d --rename -m)'{-r+,--rev=}'[revision]:revision:_hg_labels' \
537 '(--rev -r --delete -d --rename -m)'{-d,--delete}'[delete a given bookmark]' \
538 '(--rev -r --delete -d --rename -m)'{-m+,--rename=}'[rename a given bookmark]:bookmark:_hg_bookmarks' \
535 '(--inactive -i --delete -d --list -l)'{-i,--inactive}'[mark a bookmark inactive]' \
536 '(--rev -r --delete -d --rename -m --list -l)'{-r+,--rev=}'[revision]:revision:_hg_labels' \
537 '(--rev -r --delete -d --rename -m --list -l --inactive -i)'{-d,--delete}'[delete a given bookmark]' \
538 '(--rev -r --delete -d --rename -m --list -l)'{-m+,--rename=}'[rename a given bookmark]:bookmark:_hg_bookmarks' \
539 '(--inactive -i --delete -d --list -l)'{-l,--list}'[list existing bookmarks]' \
539 540 ':bookmark:_hg_bookmarks'
540 541 }
541 542
542 543 _hg_cmd_branch() {
543 544 _arguments -s -S : $_hg_global_opts \
544 545 '(--force -f)'{-f,--force}'[set branch name even if it shadows an existing branch]' \
545 546 '(--clean -C)'{-C,--clean}'[reset branch name to parent branch name]'
546 547 }
547 548
548 549 _hg_cmd_branches() {
549 550 _arguments -s -S : $_hg_global_opts \
550 551 '(--closed -c)'{-c,--closed}'[show normal and closed branches]'
551 552 }
552 553
553 554 _hg_cmd_bundle() {
554 555 _arguments -s -S : $_hg_global_opts $_hg_remote_opts \
555 556 '(--force -f)'{-f,--force}'[run even when the destination is unrelated]' \
556 557 '(2)*--base=[a base changeset assumed to be available at the destination]:revision:_hg_labels' \
557 558 '*'{-b+,--branch=}'[a specific branch you would like to bundle]:branch:_hg_branches' \
558 559 '*'{-r+,--rev=}'[a changeset intended to be added to the destination]:revision:_hg_labels' \
559 560 '(--all -a)'{-a,--all}'[bundle all changesets in the repository]' \
560 561 '(--type -t)'{-t+,--type=}'[bundle compression type to use (default: bzip2)]:bundle type' \
561 562 ':output file:_files' \
562 563 ':destination repository:_files -/'
563 564 }
564 565
565 566 _hg_cmd_cat() {
566 567 _arguments -s -S : $_hg_global_opts $_hg_pat_opts \
567 568 '(--output -o)'{-o+,--output=}'[print output to file with formatted name]:format string' \
568 569 '(--rev -r)'{-r+,--rev=}'[print the given revision]:revision:_hg_labels' \
569 570 '--decode[apply any matching decode filter]' \
570 571 '*:file:_hg_files'
571 572 }
572 573
573 574 _hg_cmd_clone() {
574 575 _arguments -s -S : $_hg_global_opts $_hg_clone_opts \
575 576 '*'{-r+,--rev=}'[do not clone everything, but include this changeset and its ancestors]:revision' \
576 577 '(--updaterev -u)'{-u+,--updaterev=}'[revision, tag, or branch to check out]:revision' \
577 578 '*'{-b+,--branch=}"[do not clone everything, but include this branch's changesets and their ancestors]:branch" \
578 579 ':source repository:_hg_remote' \
579 580 ':destination:_hg_clone_dest'
580 581 }
581 582
582 583 _hg_cmd_commit() {
583 584 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_subrepos_opts \
584 585 '(--addremove -A)'{-A,--addremove}'[mark new/missing files as added/removed before committing]' \
585 586 '(--message -m)'{-m+,--message=}'[use <text> as commit message]:text' \
586 587 '(--logfile -l)'{-l+,--logfile=}'[read commit message from <file>]:log file:_files' \
587 588 '(--date -d)'{-d+,--date=}'[record the specified date as commit date]:date' \
588 589 '(--user -u)'{-u+,--user=}'[record the specified user as committer]:user' \
589 590 '--amend[amend the parent of the working directory]' \
590 591 '--close-branch[mark a branch head as closed]' \
591 592 '(--interactive -i)'{-i,--interactive}'[use interactive mode]' \
592 593 '(--secret -s)'{-s,--secret}'[use the secret phase for committing]' \
593 594 '*:file:_hg_committable'
594 595 }
595 596
596 597 _hg_cmd_copy() {
597 598 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
598 599 '(--after -A)'{-A,--after}'[record a copy that has already occurred]' \
599 600 '(--force -f)'{-f,--force}'[forcibly copy over an existing managed file]' \
600 601 '*:file:_hg_files'
601 602 }
602 603
603 604 _hg_cmd_diff() {
604 605 local context state state_descr line ret=1
605 606 typeset -A opt_args
606 607
607 608 _arguments -s -S : $_hg_global_opts $_hg_diff_opts $_hg_ignore_space_opts \
608 609 $_hg_pat_opts $_hg_subrepos_opts \
609 610 '*'{-r+,--rev=}'[revision]:revision:_hg_revrange' \
610 611 '--noprefix[omit a/ and b/ prefixes from filenames]' \
611 612 '(--show-function -p)'{-p,--show-function}'[show which function each change is in]' \
612 613 '(--change -c)'{-c+,--change=}'[change made by revision]:revision:_hg_labels' \
613 614 '--reverse[produce a diff that undoes the changes]' \
614 615 '(--unified -U)'{-U+,--unified=}'[number of lines of context to show]:count' \
615 616 '--stat[output diffstat-style summary of changes]' \
616 617 '--root=[produce diffs relative to subdirectory]:directory:_files -/' \
617 618 '*:file:->diff_files' && ret=0
618 619
619 620 if [[ $state == 'diff_files' ]]
620 621 then
621 622 if [[ -n ${opt_args[(I)-r|--rev]} ]]
622 623 then
623 624 _hg_files && ret=0
624 625 else
625 626 _hg_committable && ret=0
626 627 fi
627 628 fi
628 629
629 630 return ret
630 631 }
631 632
632 633 _hg_cmd_export() {
633 634 _arguments -s -S : $_hg_global_opts $_hg_diff_opts \
634 635 '(--bookmark -B)'{-B+,--bookmark=}'[export changes only reachable by given bookmark]:bookmark:_hg_bookmarks' \
635 636 '(--output -o)'{-o+,--output=}'[print output to file with formatted name]:format string' \
636 637 '--switch-parent[diff against the second parent]' \
637 638 '*'{-r+,--rev=}'[revisions to export]:revision:_hg_labels' \
638 639 '*:revision:_hg_labels'
639 640 }
640 641
641 642 _hg_cmd_files() {
642 643 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_subrepos_opts \
643 644 '(--rev -r)'{-r+,--rev=}'[search the repository as it is in revision]:revision:_hg_labels' \
644 645 '(--print0 -0)'{-0,--print0}'[end filenames with NUL, for use with xargs]' \
645 646 '*:file:_hg_files'
646 647 }
647 648
648 649 _hg_cmd_forget() {
649 650 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
650 651 '(--interactive -i)'{-i,--interactive}'[use interactive mode]' \
651 652 '*:file:_hg_files'
652 653 }
653 654
654 655 _hg_cmd_graft() {
655 656 _arguments -s -S : $_hg_global_opts $_hg_dryrun_opts \
656 657 $_hg_date_user_opts $_hg_mergetool_opts \
657 658 '*'{-r+,--rev=}'[revisions to graft]:revision:_hg_labels' \
658 659 '(--continue -c --abort -a)'{-c,--continue}'[resume interrupted graft]' \
659 660 '(--continue -c --abort -a)'{-a,--abort}'[abort interrupted graft]' \
660 661 '(--edit -e)'{-e,--edit}'[invoke editor on commit messages]' \
661 662 '--log[append graft info to log message]' \
662 663 "--no-commit[don't commit, just apply the changes in working directory]" \
663 664 '(--force -f)'{-f,--force}'[force graft]' \
664 665 '*:revision:_hg_labels'
665 666 }
666 667
667 668 _hg_cmd_grep() {
668 669 _arguments -s -S : $_hg_global_opts $_hg_pat_opts \
669 670 '(--print0 -0)'{-0,--print0}'[end fields with NUL]' \
670 671 '--diff[print all revisions when the term was introduced or removed]' \
671 672 '(--text -a)'{-a,--text}'[treat all files as text]' \
672 673 '(--follow -f)'{-f,--follow}'[follow changeset history, or file history across copies and renames]' \
673 674 '(--ignore-case -i)'{-i,--ignore-case}'[ignore case when matching]' \
674 675 '(--files-with-matches -l)'{-l,--files-with-matches}'[print only filenames and revisions that match]' \
675 676 '(--line-number -n)'{-n,--line-number}'[print matching line numbers]' \
676 677 '*'{-r+,--rev=}'[only search files changed within revision range]:revision:_hg_revrange' \
677 678 '(--user -u)'{-u,--user}'[list the author (long with -v)]' \
678 679 '(--date -d)'{-d,--date}'[list the date (short with -q)]' \
679 680 '1:search pattern:' \
680 681 '*:files:_hg_files'
681 682 }
682 683
683 684 _hg_cmd_heads() {
684 685 _arguments -s -S : $_hg_global_opts $_hg_template_opts \
685 686 '(--topo -t)'{-t,--topo}'[show topological heads only]' \
686 687 '(--closed -c)'{-c,--closed}'[show normal and closed branch heads]' \
687 688 '(--rev -r)'{-r+,--rev=}'[show only heads which are descendants of revision]:revision:_hg_labels'
688 689 }
689 690
690 691 _hg_cmd_help() {
691 692 _arguments -s -S : $_hg_global_opts \
692 693 '(--extension -e)'{-e,--extension}'[show only help for extensions]' \
693 694 '(--command -c)'{-c,--command}'[show only help for commands]' \
694 695 '(--keyword -k)'{-k,--keyword}'[show topics matching keyword]' \
695 696 '*'{-s+,--system=}'[show help for specific platform(s)]:platform:(windows vms plan9 unix)' \
696 697 '*:mercurial help topic:_hg_help_topics'
697 698 }
698 699
699 700 _hg_cmd_identify() {
700 701 _arguments -s -S : $_hg_global_opts $_hg_remote_opts \
701 702 '(--rev -r)'{-r+,--rev=}'[identify the specified revision]:revision:_hg_labels' \
702 703 '(--num -n)'{-n,--num}'[show local revision number]' \
703 704 '(--id -i)'{-i,--id}'[show global revision id]' \
704 705 '(--branch -b)'{-b,--branch}'[show branch]' \
705 706 '(--bookmarks -B)'{-B,--bookmarks}'[show bookmarks]' \
706 707 '(--tags -t)'{-t,--tags}'[show tags]'
707 708 }
708 709
709 710 _hg_cmd_import() {
710 711 _arguments -s -S : $_hg_global_opts $_hg_commit_opts \
711 712 '(--strip -p)'{-p+,--strip=}'[directory strip option for patch (default: 1)]:count' \
712 713 '--bypass[apply patch without touching the working directory]' \
713 714 '--no-commit[do not commit, just update the working directory]' \
714 715 '--partial[commit even if some hunks fail]' \
715 716 '--exact[abort if patch would apply lossily]' \
716 717 '--prefix=[apply patch to subdirectory]:directory:_files -/' \
717 718 '--import-branch[use any branch information in patch (implied by --exact)]' \
718 719 '(--date -d)'{-d+,--date=}'[record the specified date as commit date]:date' \
719 720 '(--user -u)'{-u+,--user=}'[record the specified user as committer]:user' \
720 721 '(--similarity -s)'{-s+,--similarity=}'[guess renamed files by similarity (0<=s<=100)]:similarity' \
721 722 '*:patch:_files'
722 723 }
723 724
724 725 _hg_cmd_incoming() {
725 726 _arguments -s -S : $_hg_log_opts $_hg_remote_opts $_hg_subrepos_opts \
726 727 '(--force -f)'{-f,--force}'[run even if remote repository is unrelated]' \
727 728 '*'{-r+,--rev=}'[a remote changeset intended to be added]:revision:_hg_labels' \
728 729 '(--newest-first -n)'{-n,--newest-first}'[show newest record first]' \
729 730 '--bundle=[file to store the bundles into]:bundle file:_files' \
730 731 '(--bookmarks -B)'{-B,--bookmarks}'[compare bookmarks]' \
731 732 '*'{-b+,--branch=}'[a specific branch you would like to pull]:branch:_hg_branches' \
732 733 ':source:_hg_remote'
733 734 }
734 735
735 736 _hg_cmd_init() {
736 737 _arguments -s -S : $_hg_global_opts $_hg_remote_opts \
737 738 ':directory:_files -/'
738 739 }
739 740
740 741 _hg_cmd_locate() {
741 742 _arguments -s -S : $_hg_global_opts $_hg_pat_opts \
742 743 '(--rev -r)'{-r+,--rev=}'[search the repository as it is in revision]:revision:_hg_labels' \
743 744 '(--print0 -0)'{-0,--print0}'[end filenames with NUL, for use with xargs]' \
744 745 '(--fullpath -f)'{-f,--fullpath}'[print complete paths from the filesystem root]' \
745 746 '*:search pattern:_hg_files'
746 747 }
747 748
748 749 _hg_cmd_log() {
749 750 _arguments -s -S : $_hg_log_opts $_hg_pat_opts \
750 751 '(--follow -f)'{-f,--follow}'[follow changeset history, or file history across copies and renames]' \
751 752 '(--copies -C)'{-C,--copies}'[show copied files]' \
752 753 '*'{-k+,--keyword=}'[search for a keyword]:keyword' \
753 754 '*'{-r+,--rev=}'[show the specified revision or revset]:revision:_hg_revrange' \
754 755 '--removed[include revisions where files were removed]' \
755 756 '(--only-merges -m)'{-m,--only-merges}'[show only merges]' \
756 757 '*'{-P+,--prune=}'[do not display revision or any of its ancestors]:revision:_hg_labels' \
757 758 '*'{-b+,--branch=}'[show changesets within the given named branch]:branch:_hg_branches' \
758 759 '*'{-u+,--user=}'[revisions committed by user]:user' \
759 760 '(--date -d)'{-d+,--date=}'[show revisions matching date spec]:date' \
760 761 '*:files:_hg_files'
761 762 }
762 763
763 764 _hg_cmd_manifest() {
764 765 _arguments -s -S : $_hg_global_opts \
765 766 '--all[list files from all revisions]' \
766 767 '(--rev -r)'{-r+,--rev=}'[revision to display]:revision:_hg_labels' \
767 768 ':revision:_hg_labels'
768 769 }
769 770
770 771 _hg_cmd_merge() {
771 772 _arguments -s -S : $_hg_global_opts $_hg_mergetool_opts \
772 773 '(--rev -r 1)'{-r+,--rev=}'[revision to merge]:revision:_hg_mergerevs' \
773 774 '(--preview -P)'{-P,--preview}'[review revisions to merge (no merge is performed)]' \
774 775 '(- :)--abort[abort the ongoing merge]' \
775 776 ':revision:_hg_mergerevs'
776 777 }
777 778
778 779 _hg_cmd_outgoing() {
779 780 _arguments -s -S : $_hg_log_opts $_hg_remote_opts $_hg_subrepos_opts \
780 781 '(--force -f)'{-f,--force}'[run even when the destination is unrelated]' \
781 782 '*'{-r+,--rev=}'[a changeset intended to be included in the destination]:revision:_hg_revrange' \
782 783 '(--newest-first -n)'{-n,--newest-first}'[show newest record first]' \
783 784 '(--bookmarks -B)'{-B,--bookmarks}'[compare bookmarks]' \
784 785 '*'{-b+,--branch=}'[a specific branch you would like to push]:branch:_hg_branches' \
785 786 ':destination:_hg_remote'
786 787 }
787 788
788 789 _hg_cmd_parents() {
789 790 _arguments -s -S : $_hg_global_opts $_hg_template_opts \
790 791 '(--rev -r)'{-r+,--rev=}'[show parents of the specified revision]:revision:_hg_labels' \
791 792 ':last modified file:_hg_files'
792 793 }
793 794
794 795 _hg_cmd_paths() {
795 796 _arguments -s -S : $_hg_global_opts \
796 797 ':path:_hg_paths'
797 798 }
798 799
799 800 _hg_cmd_phase() {
800 801 _arguments -s -S : $_hg_global_opts \
801 802 '(--public -p --draft -d --secret -s)'{-p,--public}'[set changeset phase to public]' \
802 803 '(--public -p --draft -d --secret -s)'{-d,--draft}'[set changeset phase to draft]' \
803 804 '(--public -p --draft -d --secret -s)'{-s,--secret}'[set changeset phase to secret]' \
804 805 '(--force -f)'{-f,--force}'[allow to move boundary backward]' \
805 806 '*'{-r+,--rev=}'[target revision]:revision:_hg_labels' \
806 807 '*:revision:_hg_labels'
807 808 }
808 809
809 810 _hg_cmd_pull() {
810 811 _arguments -s -S : $_hg_global_opts $_hg_remote_opts \
811 812 '(--force -f)'{-f,--force}'[run even when the remote repository is unrelated]' \
812 813 '(--update -u)'{-u,--update}'[update to new branch head if new descendants were pulled]' \
813 814 '*'{-r+,--rev=}'[a remote changeset intended to be added]:revision:_hg_labels' \
814 815 '*'{-B+,--bookmark=}'[bookmark to pull]:bookmark:_hg_bookmarks' \
815 816 '*'{-b+,--branch=}'[a specific branch you would like to pull]:branch:_hg_branches' \
816 817 ':source:_hg_remote'
817 818 }
818 819
819 820 _hg_cmd_push() {
820 821 _arguments -s -S : $_hg_global_opts $_hg_remote_opts \
821 822 '(--force -f)'{-f,--force}'[force push]' \
822 823 '*'{-r+,--rev=}'[a changeset intended to be included in the destination]:revision:_hg_labels' \
823 824 '*'{-B+,--bookmark=}'[bookmark to push]:bookmark:_hg_bookmarks' \
824 825 '*'{-b+,--branch=}'[a specific branch you would like to push]:branch:_hg_branches' \
825 826 '--new-branch[allow pushing a new branch]' \
826 827 ':destination:_hg_remote'
827 828 }
828 829
829 830 _hg_cmd_remove() {
830 831 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts $_hg_subrepos_opts \
831 832 '(--after -A)'{-A,--after}'[record delete for missing files]' \
832 833 '(--force -f)'{-f,--force}'[forget added files, delete modified files]' \
833 834 '*:file:_hg_files'
834 835 }
835 836
836 837 _hg_cmd_rename() {
837 838 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
838 839 '(--after -A)'{-A,--after}'[record a rename that has already occurred]' \
839 840 '(--force -f)'{-f,--force}'[forcibly copy over an existing managed file]' \
840 841 '*:file:_hg_files'
841 842 }
842 843
843 844 _hg_cmd_resolve() {
844 845 local context state state_descr line ret=1
845 846 typeset -A opt_args
846 847
847 848 _arguments -s -S : $_hg_global_opts $_hg_mergetool_opts $_hg_pat_opts \
848 849 '(--all -a)'{-a,--all}'[select all unresolved files]' \
849 850 '(--no-status -n)'{-n,--no-status}'[hide status prefix]' \
850 851 '(--list -l --mark -m --unmark -u)'{-l,--list}'[list state of files needing merge]:*:merged files:->resolve_files' \
851 852 '(--mark -m --list -l --unmark -u)'{-m,--mark}'[mark files as resolved]:*:unresolved files:_hg_unresolved' \
852 853 '(--unmark -u --list -l --mark -m)'{-u,--unmark}'[mark files as unresolved]:*:resolved files:_hg_resolved' \
853 854 '*:file:_hg_unresolved' && ret=0
854 855
855 856 if [[ $state == 'resolve_files' ]]
856 857 then
857 858 _alternative 'files:resolved files:_hg_resolved' \
858 859 'files:unresolved files:_hg_unresolved' && ret=0
859 860 fi
860 861
861 862 return ret
862 863 }
863 864
864 865 _hg_cmd_revert() {
865 866 local context state state_descr line ret=1
866 867 typeset -A opt_args
867 868
868 869 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
869 870 '(--all -a :)'{-a,--all}'[revert all changes when no arguments given]' \
870 871 '(--rev -r)'{-r+,--rev=}'[revert to the specified revision]:revision:_hg_labels' \
871 872 '(--no-backup -C)'{-C,--no-backup}'[do not save backup copies of files]' \
872 873 '(--date -d)'{-d+,--date=}'[tipmost revision matching date]:date' \
873 874 '(--interactive -i)'{-i,--interactive}'[interactively select the changes]' \
874 875 '*:file:->revert_files' && ret=0
875 876
876 877 if [[ $state == 'revert_files' ]]
877 878 then
878 879 if [[ -n ${opt_args[(I)-r|--rev]} ]]
879 880 then
880 881 _hg_files && ret=0
881 882 else
882 883 typeset -a status_files
883 884 _hg_status mard
884 885 _wanted files expl 'modified, added, removed or deleted file' _multi_parts / status_files && ret=0
885 886 fi
886 887 fi
887 888
888 889 return ret
889 890 }
890 891
891 892 _hg_cmd_rollback() {
892 893 _arguments -s -S : $_hg_global_opts $_hg_dryrun_opts \
893 894 '(--force -f)'{-f,--force}'[ignore safety measures]' \
894 895 }
895 896
896 897 _hg_cmd_serve() {
897 898 _arguments -s -S : $_hg_global_opts $_hg_subrepos_opts \
898 899 '(--accesslog -A)'{-A+,--accesslog=}'[name of access log file to write to]:log file:_files' \
899 900 '(--errorlog -E)'{-E+,--errorlog=}'[name of error log file to write to]:log file:_files' \
900 901 '(--daemon -d)'{-d,--daemon}'[run server in background]' \
901 902 '(--port -p)'{-p+,--port=}'[port to listen on (default: 8000)]:listen port' \
902 903 '(--address -a)'{-a+,--address=}'[address to listen on (default: all interfaces)]:interface address' \
903 904 '--prefix=[prefix path to serve from (default: server root)]:directory:_files' \
904 905 '(--name -n)'{-n+,--name=}'[name to show in web pages (default: working directory)]:repository name' \
905 906 '--web-conf=[name of the hgweb config file]:config file:_files' \
906 907 '--pid-file=[name of file to write process ID to]:pid file:_files' \
907 908 '--cmdserver[for remote clients]' \
908 909 '(--templates -t)'{-t+,--templates=}'[web template directory]:template dir:_files -/' \
909 910 '--style=[template style to use]:style' \
910 911 '--stdio[for remote clients]' \
911 912 '(--ipv6 -6)'{-6,--ipv6}'[use IPv6 in addition to IPv4]' \
912 913 '--certificate=[SSL certificate file]:certificate file:_files' \
913 914 '--print-url[start and print only the URL]'
914 915 }
915 916
916 917 _hg_cmd_showconfig() {
917 918 _arguments -s -S : $_hg_global_opts \
918 919 '(--untrusted -u)'{-u,--untrusted}'[show untrusted configuration options]' \
919 920 '(--edit -e)'{-e,--edit}'[edit user config]' \
920 921 '(--local -l --global -g)'{-l,--local}'[edit repository config]' \
921 922 '(--local -l --global -g)'{-g,--global}'[edit global config]' \
922 923 '*:config item:_hg_config'
923 924 }
924 925
925 926 _hg_cmd_status() {
926 927 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_subrepos_opts \
927 928 '(--all -A)'{-A,--all}'[show status of all files]' \
928 929 '(--modified -m)'{-m,--modified}'[show only modified files]' \
929 930 '(--added -a)'{-a,--added}'[show only added files]' \
930 931 '(--removed -r)'{-r,--removed}'[show only removed files]' \
931 932 '(--deleted -d)'{-d,--deleted}'[show only deleted (but tracked) files]' \
932 933 '(--clean -c)'{-c,--clean}'[show only files without changes]' \
933 934 '(--unknown -u)'{-u,--unknown}'[show only unknown (not tracked) files]' \
934 935 '(--ignored -i)'{-i,--ignored}'[show only ignored files]' \
935 936 '(--no-status -n)'{-n,--no-status}'[hide status prefix]' \
936 937 '(--copies -C)'{-C,--copies}'[show source of copied files]' \
937 938 '(--print0 -0)'{-0,--print0}'[end filenames with NUL, for use with xargs]' \
938 939 '*--rev=[show difference from revision]:revision:_hg_labels' \
939 940 '--change=[list the changed files of a revision]:revision:_hg_labels' \
940 941 '*:files:_files'
941 942 }
942 943
943 944 _hg_cmd_summary() {
944 945 _arguments -s -S : $_hg_global_opts \
945 946 '--remote[check for push and pull]'
946 947 }
947 948
948 949 _hg_cmd_tag() {
949 950 _arguments -s -S : $_hg_global_opts \
950 951 '(--local -l)'{-l,--local}'[make the tag local]' \
951 952 '(--message -m)'{-m+,--message=}'[message for tag commit log entry]:message' \
952 953 '(--date -d)'{-d+,--date=}'[record the specified date as commit date]:date' \
953 954 '(--user -u)'{-u+,--user=}'[record the specified user as committer]:user' \
954 955 '(--rev -r)'{-r+,--rev=}'[revision to tag]:revision:_hg_labels' \
955 956 '(--force -f)'{-f,--force}'[force tag]' \
956 957 '--remove[remove a tag]' \
957 958 '(--edit -e)'{-e,--edit}'[edit commit message]' \
958 959 ':tag name:'
959 960 }
960 961
961 962 _hg_cmd_tip() {
962 963 _arguments -s -S : $_hg_global_opts $_hg_gitlike_opts $_hg_template_opts \
963 964 '(--patch -p)'{-p,--patch}'[show patch]'
964 965 }
965 966
966 967 _hg_cmd_unbundle() {
967 968 _arguments -s -S : $_hg_global_opts \
968 969 '(--update -u)'{-u,--update}'[update to new branch head if changesets were unbundled]' \
969 970 '*:files:_files'
970 971 }
971 972
972 973 _hg_cmd_update() {
973 974 _arguments -s -S : $_hg_global_opts $_hg_mergetool_opts \
974 975 '(--clean -C)'{-C,--clean}'[discard uncommitted changes (no backup)]' \
975 976 '(--check -c)'{-c,--check}'[require clean working directory]' \
976 977 '(--merge -m)'{-m,--merge}'[merge uncommitted changes]' \
977 978 '(--date -d)'{-d+,--date=}'[tipmost revision matching date]:date' \
978 979 '(--rev -r 1)'{-r+,--rev=}'[revision]:revision:_hg_labels' \
979 980 ':revision:_hg_labels'
980 981 }
981 982
982 983 ## extensions ##
983 984
984 985 # HGK
985 986 _hg_cmd_view() {
986 987 _arguments -s -S : $_hg_global_opts \
987 988 '(--limit -l)'{-l+,--limit=}'[limit number of changes displayed]:limit' \
988 989 ':revision range:_hg_labels'
989 990 }
990 991
991 992 # MQ
992 993 _hg_qseries() {
993 994 typeset -a patches
994 995 patches=(${(f)"$(_hg_cmd qseries)"})
995 996 (( $#patches )) && _describe -t hg-patches 'patches' patches
996 997 }
997 998
998 999 _hg_qapplied() {
999 1000 typeset -a patches
1000 1001 patches=(${(f)"$(_hg_cmd qapplied)"})
1001 1002 if (( $#patches ))
1002 1003 then
1003 1004 patches+=(qbase qtip)
1004 1005 _describe -t hg-applied-patches 'applied patches' patches
1005 1006 fi
1006 1007 }
1007 1008
1008 1009 _hg_qunapplied() {
1009 1010 typeset -a patches
1010 1011 patches=(${(f)"$(_hg_cmd qunapplied)"})
1011 1012 (( $#patches )) && _describe -t hg-unapplied-patches 'unapplied patches' patches
1012 1013 }
1013 1014
1014 1015 # unapplied, including guarded patches
1015 1016 _hg_qdeletable() {
1016 1017 typeset -a unapplied
1017 1018 unapplied=(${(f)"$(_hg_cmd qseries)"})
1018 1019 for p in $(_hg_cmd qapplied)
1019 1020 do
1020 1021 unapplied=(${unapplied:#$p})
1021 1022 done
1022 1023
1023 1024 (( $#unapplied )) && _describe -t hg-allunapplied-patches 'all unapplied patches' unapplied
1024 1025 }
1025 1026
1026 1027 _hg_qguards() {
1027 1028 typeset -a guards
1028 1029 local guard
1029 1030 compset -P "+|-"
1030 1031 _hg_cmd qselect -s | while read guard
1031 1032 do
1032 1033 guards+=(${guard#(+|-)})
1033 1034 done
1034 1035 (( $#guards )) && _describe -t hg-guards 'guards' guards
1035 1036 }
1036 1037
1037 1038 _hg_qseries_opts=(
1038 1039 '(--summary -s)'{-s,--summary}'[print first line of patch header]')
1039 1040
1040 1041 _hg_cmd_qapplied() {
1041 1042 _arguments -s -S : $_hg_global_opts $_hg_qseries_opts \
1042 1043 '(--last -1)'{-1,--last}'[show only the preceding applied patch]' \
1043 1044 '*:patch:_hg_qapplied'
1044 1045 }
1045 1046
1046 1047 _hg_cmd_qclone() {
1047 1048 _arguments -s -S : $_hg_global_opts $_hg_remote_opts $_hg_clone_opts \
1048 1049 '(--patches -p)'{-p+,--patches=}'[location of source patch repository]:' \
1049 1050 ':source repository:_hg_remote' \
1050 1051 ':destination:_hg_clone_dest'
1051 1052 }
1052 1053
1053 1054 _hg_cmd_qdelete() {
1054 1055 _arguments -s -S : $_hg_global_opts \
1055 1056 '(--keep -k)'{-k,--keep}'[keep patch file]' \
1056 1057 '*'{-r+,--rev=}'[stop managing a revision]:applied patch:_hg_revrange' \
1057 1058 '*:unapplied patch:_hg_qdeletable'
1058 1059 }
1059 1060
1060 1061 _hg_cmd_qdiff() {
1061 1062 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_diff_opts \
1062 1063 $_hg_ignore_space_opts \
1063 1064 '*:pattern:_hg_files'
1064 1065 }
1065 1066
1066 1067 _hg_cmd_qfinish() {
1067 1068 _arguments -s -S : $_hg_global_opts \
1068 1069 '(--applied -a)'{-a,--applied}'[finish all applied patches]' \
1069 1070 '*:patch:_hg_qapplied'
1070 1071 }
1071 1072
1072 1073 _hg_cmd_qfold() {
1073 1074 _arguments -s -S : $_hg_global_opts $_hg_commit_opts \
1074 1075 '(--keep -k)'{-k,--keep}'[keep folded patch files]' \
1075 1076 '(--force -f)'{-f,--force}'[overwrite any local changes]' \
1076 1077 '--no-backup[do not save backup copies of files]' \
1077 1078 '*:unapplied patch:_hg_qunapplied'
1078 1079 }
1079 1080
1080 1081 _hg_cmd_qgoto() {
1081 1082 _arguments -s -S : $_hg_global_opts \
1082 1083 '(--force -f)'{-f,--force}'[overwrite any local changes]' \
1083 1084 '--keep-changes[tolerate non-conflicting local changes]' \
1084 1085 '--no-backup[do not save backup copies of files]' \
1085 1086 ':patch:_hg_qseries'
1086 1087 }
1087 1088
1088 1089 _hg_cmd_qguard() {
1089 1090 _arguments -s -S : $_hg_global_opts \
1090 1091 '(--list -l)'{-l,--list}'[list all patches and guards]' \
1091 1092 '(--none -n)'{-n,--none}'[drop all guards]' \
1092 1093 ':patch:_hg_qseries' \
1093 1094 '*:guards:_hg_qguards'
1094 1095 }
1095 1096
1096 1097 _hg_cmd_qheader() {
1097 1098 _arguments -s -S : $_hg_global_opts \
1098 1099 ':patch:_hg_qseries'
1099 1100 }
1100 1101
1101 1102 _hg_cmd_qimport() {
1102 1103 _arguments -s -S : $_hg_global_opts $_hg_gitlike_opts \
1103 1104 '(--existing -e)'{-e,--existing}'[import file in patch directory]' \
1104 1105 '(--name -n 2)'{-n+,--name=}'[name of patch file]:name' \
1105 1106 '(--force -f)'{-f,--force}'[overwrite existing files]' \
1106 1107 '*'{-r+,--rev=}'[place existing revisions under mq control]:revision:_hg_revrange' \
1107 1108 '(--push -P)'{-P,--push}'[qpush after importing]' \
1108 1109 '*:patch:_files'
1109 1110 }
1110 1111
1111 1112 _hg_cmd_qnew() {
1112 1113 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_commit_opts $_hg_date_user_opts $_hg_gitlike_opts \
1113 1114 ':patch:'
1114 1115 }
1115 1116
1116 1117 _hg_cmd_qnext() {
1117 1118 _arguments -s -S : $_hg_global_opts $_hg_qseries_opts
1118 1119 }
1119 1120
1120 1121 _hg_cmd_qpop() {
1121 1122 _arguments -s -S : $_hg_global_opts \
1122 1123 '(--all -a :)'{-a,--all}'[pop all patches]' \
1123 1124 '(--force -f)'{-f,--force}'[forget any local changes to patched files]' \
1124 1125 '--keep-changes[tolerate non-conflicting local changes]' \
1125 1126 '--no-backup[do not save backup copies of files]' \
1126 1127 ':patch:_hg_qapplied'
1127 1128 }
1128 1129
1129 1130 _hg_cmd_qprev() {
1130 1131 _arguments -s -S : $_hg_global_opts $_hg_qseries_opts
1131 1132 }
1132 1133
1133 1134 _hg_cmd_qpush() {
1134 1135 _arguments -s -S : $_hg_global_opts \
1135 1136 '(--all -a :)'{-a,--all}'[apply all patches]' \
1136 1137 '(--list -l)'{-l,--list}'[list patch name in commit text]' \
1137 1138 '(--force -f)'{-f,--force}'[apply on top of local changes]' \
1138 1139 '(--exact -e)'{-e,--exact}'[apply the target patch to its recorded parent]' \
1139 1140 '--move[reorder patch series and apply only the patch]' \
1140 1141 '--keep-changes[tolerate non-conflicting local changes]' \
1141 1142 '--no-backup[do not save backup copies of files]' \
1142 1143 ':patch:_hg_qunapplied'
1143 1144 }
1144 1145
1145 1146 _hg_cmd_qrefresh() {
1146 1147 _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_commit_opts $_hg_date_user_opts $_hg_gitlike_opts \
1147 1148 '(--short -s)'{-s,--short}'[refresh only files already in the patch and specified files]' \
1148 1149 '*:files:_hg_files'
1149 1150 }
1150 1151
1151 1152 _hg_cmd_qrename() {
1152 1153 _arguments -s -S : $_hg_global_opts \
1153 1154 ':patch:_hg_qunapplied' \
1154 1155 ':destination:'
1155 1156 }
1156 1157
1157 1158 _hg_cmd_qselect() {
1158 1159 _arguments -s -S : $_hg_global_opts \
1159 1160 '(--none -n :)'{-n,--none}'[disable all guards]' \
1160 1161 '(--series -s :)'{-s,--series}'[list all guards in series file]' \
1161 1162 '--pop[pop to before first guarded applied patch]' \
1162 1163 '--reapply[pop, then reapply patches]' \
1163 1164 '*:guards:_hg_qguards'
1164 1165 }
1165 1166
1166 1167 _hg_cmd_qseries() {
1167 1168 _arguments -s -S : $_hg_global_opts $_hg_qseries_opts \
1168 1169 '(--missing -m)'{-m,--missing}'[print patches not in series]'
1169 1170 }
1170 1171
1171 1172 _hg_cmd_qunapplied() {
1172 1173 _arguments -s -S : $_hg_global_opts $_hg_qseries_opts \
1173 1174 '(--first -1)'{-1,--first}'[show only the first patch]'
1174 1175 }
1175 1176
1176 1177 _hg_cmd_qtop() {
1177 1178 _arguments -s -S : $_hg_global_opts $_hg_qseries_opts
1178 1179 }
1179 1180
1180 1181 _hg_cmd_strip() {
1181 1182 _arguments -s -S : $_hg_global_opts \
1182 1183 '(--force -f)'{-f,--force}'[force removal of changesets, discard uncommitted changes (no backup)]' \
1183 1184 '--no-backup[do not save backup bundle]' \
1184 1185 '(--keep -k)'{-k,--keep}'[do not modify working directory during strip]' \
1185 1186 '*'{-B+,--bookmark=}'[remove revisions only reachable from given bookmark]:bookmark:_hg_bookmarks' \
1186 1187 '*'{-r+,--rev=}'[strip specified revision]:revision:_hg_labels' \
1187 1188 '*:revision:_hg_labels'
1188 1189 }
1189 1190
1190 1191 # Patchbomb
1191 1192 _hg_cmd_email() {
1192 1193 _arguments -s -S : $_hg_global_opts $_hg_remote_opts $_hg_gitlike_opts \
1193 1194 '--plain[omit hg patch header]' \
1194 1195 '--body[send patches as inline message text (default)]' \
1195 1196 '(--outgoing -o)'{-o,--outgoing}'[send changes not found in the target repository]' \
1196 1197 '(--bundle -b)'{-b,--bundle}'[send changes not in target as a binary bundle]' \
1197 1198 '(--bookmark -B)'{-B+,--bookmark=}'[send changes only reachable by given bookmark]:bookmark:_hg_bookmarks' \
1198 1199 '--bundlename=[name of the bundle attachment file (default: bundle)]:name' \
1199 1200 '*'{-r+,--rev=}'[a revision to send]:revision:_hg_revrange' \
1200 1201 '--force[run even when remote repository is unrelated (with -b/--bundle)]' \
1201 1202 '*--base=[a base changeset to specify instead of a destination (with -b/--bundle)]:revision:_hg_labels' \
1202 1203 '--intro[send an introduction email for a single patch]' \
1203 1204 '(--inline -i --attach -a)'{-a,--attach}'[send patches as attachments]' \
1204 1205 '(--attach -a --inline -i)'{-i,--inline}'[send patches as inline attachments]' \
1205 1206 '*--bcc=[email addresses of blind carbon copy recipients]:email' \
1206 1207 '*'{-c+,--cc=}'[email addresses of copy recipients]:email' \
1207 1208 '--confirm[ask for confirmation before sending]' \
1208 1209 '(--diffstat -d)'{-d,--diffstat}'[add diffstat output to messages]' \
1209 1210 '--date=[use the given date as the sending date]:date' \
1210 1211 '--desc=[use the given file as the series description]:files:_files' \
1211 1212 '(--from -f)'{-f+,--from=}'[email address of sender]:email' \
1212 1213 '(--test -n)'{-n,--test}'[print messages that would be sent]' \
1213 1214 '(--mbox -m)'{-m+,--mbox=}'[write messages to mbox file instead of sending them]:file:_files' \
1214 1215 '*--reply-to=[email addresses replies should be sent to]:email' \
1215 1216 '(--subject -s)'{-s+,--subject=}'[subject of first message (intro or single patch)]:subject' \
1216 1217 '--in-reply-to=[message identifier to reply to]:msgid' \
1217 1218 '*--flag=[flags to add in subject prefixes]:flag' \
1218 1219 '*'{-t+,--to=}'[email addresses of recipients]:email' \
1219 1220 ':revision:_hg_revrange'
1220 1221 }
1221 1222
1222 1223 # Rebase
1223 1224 _hg_cmd_rebase() {
1224 1225 _arguments -s -S : $_hg_global_opts $_hg_commit_opts $_hg_mergetool_opts $_hg_dryrun_opts \
1225 1226 '*'{-r+,--rev=}'[rebase these revisions]:revision:_hg_revrange' \
1226 1227 '(--source -s --base -b)'{-s+,--source=}'[rebase the specified changeset and descendants]:revision:_hg_labels' \
1227 1228 '(--source -s --base -b)'{-b+,--base=}'[rebase everything from branching point of specified changeset]:revision:_hg_labels' \
1228 1229 '(--dest -d)'{-d+,--dest=}'[rebase onto the specified changeset]:revision:_hg_labels' \
1229 1230 '--collapse[collapse the rebased changesets]' \
1230 1231 '(--keep -k)'{-k,--keep}'[keep original changesets]' \
1231 1232 '--keepbranches[keep original branch names]' \
1232 1233 '(--continue -c --abort -a)'{-c,--continue}'[continue an interrupted rebase]' \
1233 1234 '(--continue -c --abort -a)'{-a,--abort}'[abort an interrupted rebase]' \
1234 1235 }
1235 1236
1236 1237 # Record
1237 1238 _hg_cmd_record() {
1238 1239 _arguments -s -S : $_hg_global_opts $_hg_commit_opts $_hg_pat_opts \
1239 1240 $_hg_ignore_space_opts $_hg_subrepos_opts \
1240 1241 '(--addremove -A)'{-A,--addremove}'[mark new/missing files as added/removed before committing]' \
1241 1242 '--close-branch[mark a branch as closed, hiding it from the branch list]' \
1242 1243 '--amend[amend the parent of the working dir]' \
1243 1244 '(--date -d)'{-d+,--date=}'[record the specified date as commit date]:date' \
1244 1245 '(--user -u)'{-u+,--user=}'[record the specified user as committer]:user'
1245 1246 }
1246 1247
1247 1248 _hg_cmd_qrecord() {
1248 1249 _arguments -s -S : $_hg_global_opts $_hg_commit_opts $_hg_date_user_opts $_hg_gitlike_opts \
1249 1250 $_hg_pat_opts $_hg_ignore_space_opts $_hg_subrepos_opts
1250 1251 }
1251 1252
1252 1253 # Convert
1253 1254 _hg_cmd_convert() {
1254 1255 _arguments -s -S : $_hg_global_opts \
1255 1256 '(--source-type -s)'{-s+,--source-type=}'[source repository type]:type:(hg cvs darcs git svn mtn gnuarch bzr p4)' \
1256 1257 '(--dest-type -d)'{-d+,--dest-type=}'[destination repository type]:type:(hg svn)' \
1257 1258 '*'{-r+,--rev=}'[import up to source revision]:revision' \
1258 1259 '(--authormap -A)'{-A+,--authormap=}'[remap usernames using this file]:file:_files' \
1259 1260 '--filemap=[remap file names using contents of file]:file:_files' \
1260 1261 '--full[apply filemap changes by converting all files again]' \
1261 1262 '--splicemap=[splice synthesized history into place]:file:_files' \
1262 1263 '--branchmap=[change branch names while converting]:file:_files' \
1263 1264 '--branchsort[try to sort changesets by branches]' \
1264 1265 '--datesort[try to sort changesets by date]' \
1265 1266 '--sourcesort[preserve source changesets order]' \
1266 1267 '--closesort[try to reorder closed revisions]'
1267 1268 }
1268 1269
1269 1270 # Purge
1270 1271 _hg_cmd_purge() {
1271 1272 _arguments -s -S : $_hg_global_opts $_hg_pat_opts \
1272 1273 '(--abort-on-err -a)'{-a,--abort-on-err}'[abort if an error occurs]' \
1273 1274 '--all[purge ignored files too]' \
1274 1275 '--dirs[purge empty directories]' \
1275 1276 '--files[purge files]' \
1276 1277 '(--print -p)'{-p,--print}'[print filenames instead of deleting them]' \
1277 1278 '(--print0 -0)'{-0,--print0}'[end filenames with NUL, for use with xargs (implies -p/--print)]'
1278 1279 }
1279 1280
1280 1281 # Shelve
1281 1282 _hg_cmd_shelve() {
1282 1283 local context state state_descr line ret=1
1283 1284 typeset -A opt_args
1284 1285
1285 1286 _arguments -s -S : $_hg_global_opts $_hg_pat_opts \
1286 1287 '(--addremove -A)'{-A,--addremove}'[mark new/missing files as added/removed before shelving]' \
1287 1288 '(--unknown -u)'{-u,--unknown}'[store unknown files in the shelve]' \
1288 1289 '(--name -n :)--cleanup[delete all shelved changes]' \
1289 1290 '--date=[shelve with the specified commit date]:date' \
1290 1291 '(--delete -d)'{-d,--delete}'[delete the named shelved change(s)]' \
1291 1292 '(--edit -e)'{-e,--edit}'[invoke editor on commit messages]' \
1292 1293 '(--list -l)'{-l,--list}'[list current shelves]' \
1293 1294 '(--message -m)'{-m+,--message=}'[use text as shelve message]:text' \
1294 1295 '(--name -n)'{-n+,--name=}'[use the given name for the shelved commit]:name' \
1295 1296 '(--patch -p)'{-p,--patch}'[output patches for changes]' \
1296 1297 '(--interactive -i)'{-i,--interactive}'[interactive mode, only works while creating a shelve]' \
1297 1298 '--stat[output diffstat-style summary of changes]' \
1298 1299 '*:file:->shelve_files' && ret=0
1299 1300
1300 1301 if [[ $state == 'shelve_files' ]]
1301 1302 then
1302 1303 if [[ -n ${opt_args[(I)-d|--delete|-l|--list|-p|--patch|--stat]} ]]
1303 1304 then
1304 1305 _hg_shelves && ret=0
1305 1306 else
1306 1307 typeset -a status_files
1307 1308 _hg_status mard
1308 1309 _wanted files expl 'modified, added, removed or deleted file' _multi_parts / status_files && ret=0
1309 1310 fi
1310 1311 fi
1311 1312
1312 1313 return ret
1313 1314 }
1314 1315
1315 1316 _hg_cmd_unshelve() {
1316 1317 _arguments -s -S : $_hg_global_opts $_hg_mergetool_opts \
1317 1318 '(--abort -a --continue -c --name -n :)'{-a,--abort}'[abort an incomplete unshelve operation]' \
1318 1319 '(--abort -a --continue -c --name -n :)'{-c,--continue}'[continue an incomplete unshelve operation]' \
1319 1320 '(--keep -k)'{-k,--keep}'[keep shelve after unshelving]' \
1320 1321 '(--name -n :)'{-n+,--name=}'[restore shelved change with given name]:shelve:_hg_shelves' \
1321 1322 ':shelve:_hg_shelves'
1322 1323 }
1323 1324
1324 1325 _hg "$@"
General Comments 0
You need to be logged in to leave comments. Login now