##// END OF EJS Templates
zsh completion: add hg branch
Brendan Cully -
r8985:a04c1ab2 default
parent child Browse files
Show More
@@ -1,935 +1,941
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-9 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 -w : $_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 -w : $_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 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_tags "$@"
163 163 }
164 164
165 165 _hg_tags() {
166 166 typeset -a tags
167 167 local tag rev
168 168
169 169 _hg_cmd tags | while read tag
170 170 do
171 171 tags+=(${tag/ # [0-9]#:*})
172 172 done
173 173 (( $#tags )) && _describe -t tags 'tags' tags
174 174 }
175 175
176 176 # likely merge candidates
177 177 _hg_mergerevs() {
178 178 typeset -a heads
179 179 local myrev
180 180
181 181 heads=(${(f)"$(_hg_cmd heads --template '{rev}\\n')"})
182 182 # exclude own revision
183 183 myrev=$(_hg_cmd log -r . --template '{rev}\\n')
184 184 heads=(${heads:#$myrev})
185 185
186 186 (( $#heads )) && _describe -t heads 'heads' heads
187 187 }
188 188
189 189 _hg_files() {
190 190 if [[ -n "$_hg_root" ]]
191 191 then
192 192 [[ -d "$_hg_root/.hg" ]] || return
193 193 case "$_hg_root" in
194 194 /*)
195 195 _files -W $_hg_root
196 196 ;;
197 197 *)
198 198 _files -W $PWD/$_hg_root
199 199 ;;
200 200 esac
201 201 else
202 202 _files
203 203 fi
204 204 }
205 205
206 206 _hg_status() {
207 207 [[ -d $PREFIX ]] || PREFIX=$PREFIX:h
208 208 status_files=(${(ps:\0:)"$(_hg_cmd status -0n$1 ./$PREFIX)"})
209 209 }
210 210
211 211 _hg_unknown() {
212 212 typeset -a status_files
213 213 _hg_status u
214 214 _wanted files expl 'unknown files' _multi_parts / status_files
215 215 }
216 216
217 217 _hg_missing() {
218 218 typeset -a status_files
219 219 _hg_status d
220 220 _wanted files expl 'missing files' _multi_parts / status_files
221 221 }
222 222
223 223 _hg_modified() {
224 224 typeset -a status_files
225 225 _hg_status m
226 226 _wanted files expl 'modified files' _multi_parts / status_files
227 227 }
228 228
229 229 _hg_resolve() {
230 230 local rstate rpath
231 231
232 232 [[ -d $PREFIX ]] || PREFIX=$PREFIX:h
233 233
234 234 _hg_cmd resolve -l ./$PREFIX | while read rstate rpath
235 235 do
236 236 [[ $rstate == 'R' ]] && resolved_files+=($rpath)
237 237 [[ $rstate == 'U' ]] && unresolved_files+=($rpath)
238 238 done
239 239 }
240 240
241 241 _hg_resolved() {
242 242 typeset -a resolved_files unresolved_files
243 243 _hg_resolve
244 244 _wanted files expl 'resolved files' _multi_parts / resolved_files
245 245 }
246 246
247 247 _hg_unresolved() {
248 248 typeset -a resolved_files unresolved_files
249 249 _hg_resolve
250 250 _wanted files expl 'unresolved files' _multi_parts / unresolved_files
251 251 }
252 252
253 253 _hg_config() {
254 254 typeset -a items
255 255 items=(${${(%f)"$(_call_program hg hg showconfig)"}%%\=*})
256 256 (( $#items )) && _describe -t config 'config item' items
257 257 }
258 258
259 259 _hg_addremove() {
260 260 _alternative 'files:unknown files:_hg_unknown' \
261 261 'files:missing files:_hg_missing'
262 262 }
263 263
264 264 _hg_ssh_urls() {
265 265 if [[ -prefix */ ]]
266 266 then
267 267 if zstyle -T ":completion:${curcontext}:files" remote-access
268 268 then
269 269 local host=${PREFIX%%/*}
270 270 typeset -a remdirs
271 271 compset -p $(( $#host + 1 ))
272 272 local rempath=${(M)PREFIX##*/}
273 273 local cacheid="hg:${host}-${rempath//\//_}"
274 274 cacheid=${cacheid%[-_]}
275 275 compset -P '*/'
276 276 if _cache_invalid "$cacheid" || ! _retrieve_cache "$cacheid"
277 277 then
278 278 remdirs=(${${(M)${(f)"$(_call_program files ssh -a -x $host ls -1FL "${(q)rempath}")"}##*/}%/})
279 279 _store_cache "$cacheid" remdirs
280 280 fi
281 281 _describe -t directories 'remote directory' remdirs -S/
282 282 else
283 283 _message 'remote directory'
284 284 fi
285 285 else
286 286 if compset -P '*@'
287 287 then
288 288 _hosts -S/
289 289 else
290 290 _alternative 'hosts:remote host name:_hosts -S/' \
291 291 'users:user:_users -S@'
292 292 fi
293 293 fi
294 294 }
295 295
296 296 _hg_urls() {
297 297 if compset -P bundle://
298 298 then
299 299 _files
300 300 elif compset -P ssh://
301 301 then
302 302 _hg_ssh_urls
303 303 elif [[ -prefix *: ]]
304 304 then
305 305 _urls
306 306 else
307 307 local expl
308 308 compset -S '[^:]*'
309 309 _wanted url-schemas expl 'URL schema' compadd -S '' - \
310 310 http:// https:// ssh:// bundle://
311 311 fi
312 312 }
313 313
314 314 _hg_paths() {
315 315 typeset -a paths pnames
316 316 _hg_cmd paths | while read -A pnames
317 317 do
318 318 paths+=($pnames[1])
319 319 done
320 320 (( $#paths )) && _describe -t path-aliases 'repository alias' paths
321 321 }
322 322
323 323 _hg_remote() {
324 324 _alternative 'path-aliases:repository alias:_hg_paths' \
325 325 'directories:directory:_files -/' \
326 326 'urls:URL:_hg_urls'
327 327 }
328 328
329 329 _hg_clone_dest() {
330 330 _alternative 'directories:directory:_files -/' \
331 331 'urls:URL:_hg_urls'
332 332 }
333 333
334 334 # Common options
335 335 _hg_global_opts=(
336 336 '(--repository -R)'{-R+,--repository}'[repository root directory]:repository:_files -/'
337 337 '--cwd[change working directory]:new working directory:_files -/'
338 338 '(--noninteractive -y)'{-y,--noninteractive}'[do not prompt, assume yes for any required answers]'
339 339 '(--verbose -v)'{-v,--verbose}'[enable additional output]'
340 340 '*--config[set/override config option]:defined config items:_hg_config'
341 341 '(--quiet -q)'{-q,--quiet}'[suppress output]'
342 342 '(--help -h)'{-h,--help}'[display help and exit]'
343 343 '--debug[debug mode]'
344 344 '--debugger[start debugger]'
345 345 '--encoding[set the charset encoding (default: UTF8)]'
346 346 '--encodingmode[set the charset encoding mode (default: strict)]'
347 347 '--lsprof[print improved command execution profile]'
348 348 '--traceback[print traceback on exception]'
349 349 '--time[time how long the command takes]'
350 350 '--profile[profile]'
351 351 '--version[output version information and exit]'
352 352 )
353 353
354 354 _hg_pat_opts=(
355 355 '*'{-I+,--include}'[include names matching the given patterns]:dir:_files -W $(_hg_cmd root) -/'
356 356 '*'{-X+,--exclude}'[exclude names matching the given patterns]:dir:_files -W $(_hg_cmd root) -/')
357 357
358 358 _hg_diff_opts=(
359 359 '(--text -a)'{-a,--text}'[treat all files as text]'
360 360 '(--git -g)'{-g,--git}'[use git extended diff format]'
361 361 "--nodates[don't include dates in diff headers]")
362 362
363 363 _hg_dryrun_opts=(
364 364 '(--dry-run -n)'{-n,--dry-run}'[do not perform actions, just print output]')
365 365
366 366 _hg_style_opts=(
367 367 '--style[display using template map file]:'
368 368 '--template[display with template]:')
369 369
370 370 _hg_commit_opts=(
371 371 '(-m --message -l --logfile --edit -e)'{-e,--edit}'[edit commit message]'
372 372 '(-e --edit -l --logfile --message -m)'{-m+,--message}'[use <text> as commit message]:message:'
373 373 '(-e --edit -m --message --logfile -l)'{-l+,--logfile}'[read the commit message from <file>]:log file:_files')
374 374
375 375 _hg_remote_opts=(
376 376 '(--ssh -e)'{-e+,--ssh}'[specify ssh command to use]:'
377 377 '--remotecmd[specify hg command to run on the remote side]:')
378 378
379 379 _hg_cmd() {
380 380 _call_program hg hg --config ui.verbose=0 --config defaults."$1"= \
381 381 "$_hg_cmd_globals[@]" "$@" 2> /dev/null
382 382 }
383 383
384 384 _hg_cmd_add() {
385 385 _arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
386 386 '*:unknown files:_hg_unknown'
387 387 }
388 388
389 389 _hg_cmd_addremove() {
390 390 _arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
391 391 '(--similarity -s)'{-s+,--similarity}'[guess renamed files by similarity (0<=s<=100)]:' \
392 392 '*:unknown or missing files:_hg_addremove'
393 393 }
394 394
395 395 _hg_cmd_annotate() {
396 396 _arguments -s -w : $_hg_global_opts $_hg_pat_opts \
397 397 '(--rev -r)'{-r+,--rev}'[annotate the specified revision]:revision:_hg_tags' \
398 398 '(--follow -f)'{-f,--follow}'[follow file copies and renames]' \
399 399 '(--text -a)'{-a,--text}'[treat all files as text]' \
400 400 '(--user -u)'{-u,--user}'[list the author]' \
401 401 '(--date -d)'{-d,--date}'[list the date]' \
402 402 '(--number -n)'{-n,--number}'[list the revision number (default)]' \
403 403 '(--changeset -c)'{-c,--changeset}'[list the changeset]' \
404 404 '*:files:_hg_files'
405 405 }
406 406
407 407 _hg_cmd_archive() {
408 408 _arguments -s -w : $_hg_global_opts $_hg_pat_opts \
409 409 '--no-decode[do not pass files through decoders]' \
410 410 '(--prefix -p)'{-p+,--prefix}'[directory prefix for files in archive]:' \
411 411 '(--rev -r)'{-r+,--rev}'[revision to distribute]:revision:_hg_tags' \
412 412 '(--type -t)'{-t+,--type}'[type of distribution to create]:archive type:(files tar tbz2 tgz uzip zip)' \
413 413 '*:destination:_files'
414 414 }
415 415
416 416 _hg_cmd_backout() {
417 417 _arguments -s -w : $_hg_global_opts $_hg_pat_opts \
418 418 '--merge[merge with old dirstate parent after backout]' \
419 419 '(--date -d)'{-d+,--date}'[record datecode as commit date]:date code:' \
420 420 '--parent[parent to choose when backing out merge]' \
421 421 '(--user -u)'{-u+,--user}'[record user as commiter]:user:' \
422 422 '(--rev -r)'{-r+,--rev}'[revision]:revision:_hg_tags' \
423 423 '(--message -m)'{-m+,--message}'[use <text> as commit message]:text:' \
424 424 '(--logfile -l)'{-l+,--logfile}'[read commit message from <file>]:log file:_files -g \*.txt'
425 425 }
426 426
427 _hg_cmd_branch() {
428 _arguments -s -w : $_hg_global_opts \
429 '(--force -f)'{-f,--force}'[set branch name even if it shadows an existing branch]' \
430 '(--clean -C)'{-C,--clean}'[reset branch name to parent branch name]'
431 }
432
427 433 _hg_cmd_branches() {
428 434 _arguments -s -w : $_hg_global_opts \
429 435 '(--active -a)'{-a,--active}'[show only branches that have unmerge heads]'
430 436 }
431 437
432 438 _hg_cmd_bundle() {
433 439 _arguments -s -w : $_hg_global_opts $_hg_remote_opts \
434 440 '(--force -f)'{-f,--force}'[run even when remote repository is unrelated]' \
435 441 '(2)*--base[a base changeset to specify instead of a destination]:revision:_hg_tags' \
436 442 ':output file:_files' \
437 443 ':destination repository:_files -/'
438 444 }
439 445
440 446 _hg_cmd_cat() {
441 447 _arguments -s -w : $_hg_global_opts $_hg_pat_opts \
442 448 '(--output -o)'{-o+,--output}'[print output to file with formatted name]:filespec:' \
443 449 '(--rev -r)'{-r+,--rev}'[revision]:revision:_hg_tags' \
444 450 '*:file:_hg_files'
445 451 }
446 452
447 453 _hg_cmd_clone() {
448 454 _arguments -s -w : $_hg_global_opts $_hg_remote_opts \
449 455 '(--noupdate -U)'{-U,--noupdate}'[do not update the new working directory]' \
450 456 '(--rev -r)'{-r+,--rev}'[a changeset you would like to have after cloning]:' \
451 457 '--uncompressed[use uncompressed transfer (fast over LAN)]' \
452 458 ':source repository:_hg_remote' \
453 459 ':destination:_hg_clone_dest'
454 460 }
455 461
456 462 _hg_cmd_commit() {
457 463 _arguments -s -w : $_hg_global_opts $_hg_pat_opts \
458 464 '(--addremove -A)'{-A,--addremove}'[mark new/missing files as added/removed before committing]' \
459 465 '(--message -m)'{-m+,--message}'[use <text> as commit message]:text:' \
460 466 '(--logfile -l)'{-l+,--logfile}'[read commit message from <file>]:log file:_files -g \*.txt' \
461 467 '(--date -d)'{-d+,--date}'[record datecode as commit date]:date code:' \
462 468 '(--user -u)'{-u+,--user}'[record user as commiter]:user:' \
463 469 '*:file:_hg_files'
464 470 }
465 471
466 472 _hg_cmd_copy() {
467 473 _arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
468 474 '(--after -A)'{-A,--after}'[record a copy that has already occurred]' \
469 475 '(--force -f)'{-f,--force}'[forcibly copy over an existing managed file]' \
470 476 '*:file:_hg_files'
471 477 }
472 478
473 479 _hg_cmd_diff() {
474 480 typeset -A opt_args
475 481 _arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_diff_opts \
476 482 '*'{-r,--rev}'+[revision]:revision:_hg_revrange' \
477 483 '(--show-function -p)'{-p,--show-function}'[show which function each change is in]' \
478 484 '(--ignore-all-space -w)'{-w,--ignore-all-space}'[ignore white space when comparing lines]' \
479 485 '(--ignore-space-change -b)'{-b,--ignore-space-change}'[ignore changes in the amount of white space]' \
480 486 '(--ignore-blank-lines -B)'{-B,--ignore-blank-lines}'[ignore changes whose lines are all blank]' \
481 487 '*:file:->diff_files'
482 488
483 489 if [[ $state == 'diff_files' ]]
484 490 then
485 491 if [[ -n $opt_args[-r] ]]
486 492 then
487 493 _hg_files
488 494 else
489 495 _hg_modified
490 496 fi
491 497 fi
492 498 }
493 499
494 500 _hg_cmd_export() {
495 501 _arguments -s -w : $_hg_global_opts $_hg_diff_opts \
496 502 '(--outout -o)'{-o+,--output}'[print output to file with formatted name]:filespec:' \
497 503 '--switch-parent[diff against the second parent]' \
498 504 '*:revision:_hg_tags'
499 505 }
500 506
501 507 _hg_cmd_grep() {
502 508 _arguments -s -w : $_hg_global_opts $_hg_pat_opts \
503 509 '(--print0 -0)'{-0,--print0}'[end filenames with NUL]' \
504 510 '--all[print all revisions with matches]' \
505 511 '(--follow -f)'{-f,--follow}'[follow changeset or file history]' \
506 512 '(--ignore-case -i)'{-i,--ignore-case}'[ignore case when matching]' \
507 513 '(--files-with-matches -l)'{-l,--files-with-matches}'[print only filenames and revs that match]' \
508 514 '(--line-number -n)'{-n,--line-number}'[print matching line numbers]' \
509 515 '*'{-r+,--rev}'[search in given revision range]:revision:_hg_revrange' \
510 516 '(--user -u)'{-u,--user}'[print user who committed change]' \
511 517 '1:search pattern:' \
512 518 '*:files:_hg_files'
513 519 }
514 520
515 521 _hg_cmd_heads() {
516 522 _arguments -s -w : $_hg_global_opts $_hg_style_opts \
517 523 '(--rev -r)'{-r+,--rev}'[show only heads which are descendants of rev]:revision:_hg_tags'
518 524 }
519 525
520 526 _hg_cmd_help() {
521 527 _arguments -s -w : $_hg_global_opts \
522 528 '*:mercurial command:_hg_commands'
523 529 }
524 530
525 531 _hg_cmd_identify() {
526 532 _arguments -s -w : $_hg_global_opts \
527 533 '(--rev -r)'{-r+,--rev}'[identify the specified rev]:revision:_hg_tags' \
528 534 '(--num -n)'{-n+,--num}'[show local revision number]' \
529 535 '(--id -i)'{-i+,--id}'[show global revision id]' \
530 536 '(--branch -b)'{-b+,--branch}'[show branch]' \
531 537 '(--tags -t)'{-t+,--tags}'[show tags]'
532 538 }
533 539
534 540 _hg_cmd_import() {
535 541 _arguments -s -w : $_hg_global_opts \
536 542 '(--strip -p)'{-p+,--strip}'[directory strip option for patch (default: 1)]:count:' \
537 543 '(--message -m)'{-m+,--message}'[use <text> as commit message]:text:' \
538 544 '(--force -f)'{-f,--force}'[skip check for outstanding uncommitted changes]' \
539 545 '*:patch:_files'
540 546 }
541 547
542 548 _hg_cmd_incoming() {
543 549 _arguments -s -w : $_hg_global_opts $_hg_remote_opts $_hg_style_opts \
544 550 '(--no-merges -M)'{-M,--no-merges}'[do not show merge revisions]' \
545 551 '(--force -f)'{-f,--force}'[run even when the remote repository is unrelated]' \
546 552 '(--patch -p)'{-p,--patch}'[show patch]' \
547 553 '(--rev -r)'{-r+,--rev}'[a specific revision up to which you would like to pull]:revision:_hg_tags' \
548 554 '(--newest-first -n)'{-n,--newest-first}'[show newest record first]' \
549 555 '--bundle[file to store the bundles into]:bundle file:_files' \
550 556 ':source:_hg_remote'
551 557 }
552 558
553 559 _hg_cmd_init() {
554 560 _arguments -s -w : $_hg_global_opts $_hg_remote_opts \
555 561 ':dir:_files -/'
556 562 }
557 563
558 564 _hg_cmd_locate() {
559 565 _arguments -s -w : $_hg_global_opts $_hg_pat_opts \
560 566 '(--rev -r)'{-r+,--rev}'[search repository as it stood at revision]:revision:_hg_tags' \
561 567 '(--print0 -0)'{-0,--print0}'[end filenames with NUL, for use with xargs]' \
562 568 '(--fullpath -f)'{-f,--fullpath}'[print complete paths]' \
563 569 '*:search pattern:_hg_files'
564 570 }
565 571
566 572 _hg_cmd_log() {
567 573 _arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_style_opts \
568 574 '(--follow --follow-first -f)'{-f,--follow}'[follow changeset or history]' \
569 575 '(-f --follow)--follow-first[only follow the first parent of merge changesets]' \
570 576 '(--copies -C)'{-C,--copies}'[show copied files]' \
571 577 '(--keyword -k)'{-k+,--keyword}'[search for a keyword]:' \
572 578 '(--limit -l)'{-l+,--limit}'[limit number of changes displayed]:' \
573 579 '*'{-r,--rev}'[show the specified revision or range]:revision:_hg_revrange' \
574 580 '(--no-merges -M)'{-M,--no-merges}'[do not show merges]' \
575 581 '(--only-merges -m)'{-m,--only-merges}'[show only merges]' \
576 582 '(--patch -p)'{-p,--patch}'[show patch]' \
577 583 '(--prune -P)'{-P+,--prune}'[do not display revision or any of its ancestors]:revision:_hg_tags' \
578 584 '*:files:_hg_files'
579 585 }
580 586
581 587 _hg_cmd_manifest() {
582 588 _arguments -s -w : $_hg_global_opts \
583 589 ':revision:_hg_tags'
584 590 }
585 591
586 592 _hg_cmd_merge() {
587 593 _arguments -s -w : $_hg_global_opts \
588 594 '(--force -f)'{-f,--force}'[force a merge with outstanding changes]' \
589 595 '(--rev -r)'{-r,--rev}'[revision to merge]:revision:_hg_tags' \
590 596 '(--preview -P)'{-P,--preview}'[review revisions to merge (no merge is performed)]' \
591 597 ':revision:_hg_mergerevs'
592 598 }
593 599
594 600 _hg_cmd_outgoing() {
595 601 _arguments -s -w : $_hg_global_opts $_hg_remote_opts $_hg_style_opts \
596 602 '(--no-merges -M)'{-M,--no-merges}'[do not show merge revisions]' \
597 603 '(--force -f)'{-f,--force}'[run even when the remote repository is unrelated]' \
598 604 '(--patch -p)'{-p,--patch}'[show patch]' \
599 605 '(--rev -r)'{-r+,--rev}'[a specific revision you would like to push]' \
600 606 '(--newest-first -n)'{-n,--newest-first}'[show newest record first]' \
601 607 ':destination:_hg_remote'
602 608 }
603 609
604 610 _hg_cmd_parents() {
605 611 _arguments -s -w : $_hg_global_opts $_hg_style_opts \
606 612 '(--rev -r)'{-r+,--rev}'[show parents of the specified rev]:revision:_hg_tags' \
607 613 ':last modified file:_hg_files'
608 614 }
609 615
610 616 _hg_cmd_paths() {
611 617 _arguments -s -w : $_hg_global_opts \
612 618 ':path:_hg_paths'
613 619 }
614 620
615 621 _hg_cmd_pull() {
616 622 _arguments -s -w : $_hg_global_opts $_hg_remote_opts \
617 623 '(--force -f)'{-f,--force}'[run even when the remote repository is unrelated]' \
618 624 '(--update -u)'{-u,--update}'[update to new tip if changesets were pulled]' \
619 625 '(--rev -r)'{-r+,--rev}'[a specific revision up to which you would like to pull]:revision:' \
620 626 ':source:_hg_remote'
621 627 }
622 628
623 629 _hg_cmd_push() {
624 630 _arguments -s -w : $_hg_global_opts $_hg_remote_opts \
625 631 '(--force -f)'{-f,--force}'[force push]' \
626 632 '(--rev -r)'{-r+,--rev}'[a specific revision you would like to push]:revision:_hg_tags' \
627 633 ':destination:_hg_remote'
628 634 }
629 635
630 636 _hg_cmd_remove() {
631 637 _arguments -s -w : $_hg_global_opts $_hg_pat_opts \
632 638 '(--after -A)'{-A,--after}'[record remove that has already occurred]' \
633 639 '(--force -f)'{-f,--force}'[remove file even if modified]' \
634 640 '*:file:_hg_files'
635 641 }
636 642
637 643 _hg_cmd_rename() {
638 644 _arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
639 645 '(--after -A)'{-A,--after}'[record a rename that has already occurred]' \
640 646 '(--force -f)'{-f,--force}'[forcibly copy over an existing managed file]' \
641 647 '*:file:_hg_files'
642 648 }
643 649
644 650 _hg_cmd_resolve() {
645 651 local context state line
646 652 typeset -A opt_args
647 653
648 654 _arguments -s -w : $_hg_global_opts \
649 655 '(--list -l --mark -m --unmark -u)'{-l,--list}'[list state of files needing merge]:*:merged files:->resolve_files' \
650 656 '(--mark -m --list -l --unmark -u)'{-m,--mark}'[mark files as resolved]:*:unresolved files:_hg_unresolved' \
651 657 '(--unmark -u --list -l --mark -m)'{-u,--unmark}'[unmark files as resolved]:*:resolved files:_hg_resolved' \
652 658 '*:file:_hg_unresolved'
653 659
654 660 if [[ $state == 'resolve_files' ]]
655 661 then
656 662 _alternative 'files:resolved files:_hg_resolved' \
657 663 'files:unresolved files:_hg_unresolved'
658 664 fi
659 665 }
660 666
661 667 _hg_cmd_revert() {
662 668 local context state line
663 669 typeset -A opt_args
664 670
665 671 _arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_dryrun_opts \
666 672 '(--all -a :)'{-a,--all}'[revert all changes when no arguments given]' \
667 673 '(--rev -r)'{-r+,--rev}'[revision to revert to]:revision:_hg_tags' \
668 674 '--no-backup[do not save backup copies of files]' \
669 675 '*:file:->diff_files'
670 676
671 677 if [[ $state == 'diff_files' ]]
672 678 then
673 679 if [[ -n $opt_args[-r] ]]
674 680 then
675 681 _hg_files
676 682 else
677 683 typeset -a status_files
678 684 _hg_status mard
679 685 _wanted files expl 'modified, added, removed or deleted file' _multi_parts / status_files
680 686 fi
681 687 fi
682 688 }
683 689
684 690 _hg_cmd_serve() {
685 691 _arguments -s -w : $_hg_global_opts \
686 692 '(--accesslog -A)'{-A+,--accesslog}'[name of access log file]:log file:_files' \
687 693 '(--errorlog -E)'{-E+,--errorlog}'[name of error log file]:log file:_files' \
688 694 '(--daemon -d)'{-d,--daemon}'[run server in background]' \
689 695 '(--port -p)'{-p+,--port}'[listen port]:listen port:' \
690 696 '(--address -a)'{-a+,--address}'[interface address]:interface address:' \
691 697 '(--name -n)'{-n+,--name}'[name to show in web pages]:repository name:' \
692 698 '(--templates -t)'{-t,--templates}'[web template directory]:template dir:_files -/' \
693 699 '--style[web template style]:style' \
694 700 '--stdio[for remote clients]' \
695 701 '(--ipv6 -6)'{-6,--ipv6}'[use IPv6 in addition to IPv4]'
696 702 }
697 703
698 704 _hg_cmd_showconfig() {
699 705 _arguments -s -w : $_hg_global_opts \
700 706 '(--untrusted -u)'{-u+,--untrusted}'[show untrusted configuration options]' \
701 707 ':config item:_hg_config'
702 708 }
703 709
704 710 _hg_cmd_status() {
705 711 _arguments -s -w : $_hg_global_opts $_hg_pat_opts \
706 712 '(--all -A)'{-A,--all}'[show status of all files]' \
707 713 '(--modified -m)'{-m,--modified}'[show only modified files]' \
708 714 '(--added -a)'{-a,--added}'[show only added files]' \
709 715 '(--removed -r)'{-r,--removed}'[show only removed files]' \
710 716 '(--deleted -d)'{-d,--deleted}'[show only deleted (but tracked) files]' \
711 717 '(--clean -c)'{-c,--clean}'[show only files without changes]' \
712 718 '(--unknown -u)'{-u,--unknown}'[show only unknown files]' \
713 719 '(--ignored -i)'{-i,--ignored}'[show ignored files]' \
714 720 '(--no-status -n)'{-n,--no-status}'[hide status prefix]' \
715 721 '(--copies -C)'{-C,--copies}'[show source of copied files]' \
716 722 '(--print0 -0)'{-0,--print0}'[end filenames with NUL, for use with xargs]' \
717 723 '--rev[show difference from revision]:revision:_hg_tags' \
718 724 '*:files:_files'
719 725 }
720 726
721 727 _hg_cmd_tag() {
722 728 _arguments -s -w : $_hg_global_opts \
723 729 '(--local -l)'{-l,--local}'[make the tag local]' \
724 730 '(--message -m)'{-m+,--message}'[message for tag commit log entry]:message:' \
725 731 '(--date -d)'{-d+,--date}'[record datecode as commit date]:date code:' \
726 732 '(--user -u)'{-u+,--user}'[record user as commiter]:user:' \
727 733 '(--rev -r)'{-r+,--rev}'[revision to tag]:revision:_hg_tags' \
728 734 ':tag name:'
729 735 }
730 736
731 737 _hg_cmd_tip() {
732 738 _arguments -s -w : $_hg_global_opts $_hg_style_opts \
733 739 '(--patch -p)'{-p,--patch}'[show patch]'
734 740 }
735 741
736 742 _hg_cmd_unbundle() {
737 743 _arguments -s -w : $_hg_global_opts \
738 744 '(--update -u)'{-u,--update}'[update to new tip if changesets were unbundled]' \
739 745 ':files:_files'
740 746 }
741 747
742 748 _hg_cmd_update() {
743 749 _arguments -s -w : $_hg_global_opts \
744 750 '(--clean -C)'{-C,--clean}'[overwrite locally modified files]' \
745 751 '(--rev -r)'{-r+,--rev}'[revision]:revision:_hg_tags' \
746 752 ':revision:_hg_tags'
747 753 }
748 754
749 755 # bisect extension
750 756 _hg_cmd_bisect() {
751 757 _arguments -s -w : $_hg_global_opts ':evaluation:(help init reset next good bad)'
752 758 }
753 759
754 760 # HGK
755 761 _hg_cmd_view() {
756 762 _arguments -s -w : $_hg_global_opts \
757 763 '(--limit -l)'{-l+,--limit}'[limit number of changes displayed]:' \
758 764 ':revision range:_hg_tags'
759 765 }
760 766
761 767 # MQ
762 768 _hg_qseries() {
763 769 typeset -a patches
764 770 patches=(${(f)"$(_hg_cmd qseries)"})
765 771 (( $#patches )) && _describe -t hg-patches 'patches' patches
766 772 }
767 773
768 774 _hg_qapplied() {
769 775 typeset -a patches
770 776 patches=(${(f)"$(_hg_cmd qapplied)"})
771 777 if (( $#patches ))
772 778 then
773 779 patches+=(qbase qtip)
774 780 _describe -t hg-applied-patches 'applied patches' patches
775 781 fi
776 782 }
777 783
778 784 _hg_qunapplied() {
779 785 typeset -a patches
780 786 patches=(${(f)"$(_hg_cmd qunapplied)"})
781 787 (( $#patches )) && _describe -t hg-unapplied-patches 'unapplied patches' patches
782 788 }
783 789
784 790 # unapplied, including guarded patches
785 791 _hg_qdeletable() {
786 792 typeset -a unapplied
787 793 unapplied=(${(f)"$(_hg_cmd qseries)"})
788 794 for p in $(_hg_cmd qapplied)
789 795 do
790 796 unapplied=(${unapplied:#$p})
791 797 done
792 798
793 799 (( $#unapplied )) && _describe -t hg-allunapplied-patches 'all unapplied patches' unapplied
794 800 }
795 801
796 802 _hg_qguards() {
797 803 typeset -a guards
798 804 local guard
799 805 compset -P "+|-"
800 806 _hg_cmd qselect -s | while read guard
801 807 do
802 808 guards+=(${guard#(+|-)})
803 809 done
804 810 (( $#guards )) && _describe -t hg-guards 'guards' guards
805 811 }
806 812
807 813 _hg_qseries_opts=(
808 814 '(--summary -s)'{-s,--summary}'[print first line of patch header]')
809 815
810 816 _hg_cmd_qapplied() {
811 817 _arguments -s -w : $_hg_global_opts $_hg_qseries_opts
812 818 }
813 819
814 820 _hg_cmd_qdelete() {
815 821 _arguments -s -w : $_hg_global_opts \
816 822 '(--keep -k)'{-k,--keep}'[keep patch file]' \
817 823 '*'{-r+,--rev}'[stop managing a revision]:applied patch:_hg_revrange' \
818 824 '*:unapplied patch:_hg_qdeletable'
819 825 }
820 826
821 827 _hg_cmd_qdiff() {
822 828 _arguments -s -w : $_hg_global_opts $_hg_pat_opts \
823 829 '*:pattern:_hg_files'
824 830 }
825 831
826 832 _hg_cmd_qfold() {
827 833 _arguments -s -w : $_hg_global_opts $_h_commit_opts \
828 834 '(--keep,-k)'{-k,--keep}'[keep folded patch files]' \
829 835 '*:unapplied patch:_hg_qunapplied'
830 836 }
831 837
832 838 _hg_cmd_qgoto() {
833 839 _arguments -s -w : $_hg_global_opts \
834 840 '(--force -f)'{-f,--force}'[overwrite any local changes]' \
835 841 ':patch:_hg_qseries'
836 842 }
837 843
838 844 _hg_cmd_qguard() {
839 845 _arguments -s -w : $_hg_global_opts \
840 846 '(--list -l)'{-l,--list}'[list all patches and guards]' \
841 847 '(--none -n)'{-n,--none}'[drop all guards]' \
842 848 ':patch:_hg_qseries' \
843 849 '*:guards:_hg_qguards'
844 850 }
845 851
846 852 _hg_cmd_qheader() {
847 853 _arguments -s -w : $_hg_global_opts \
848 854 ':patch:_hg_qseries'
849 855 }
850 856
851 857 _hg_cmd_qimport() {
852 858 _arguments -s -w : $_hg_global_opts \
853 859 '(--existing -e)'{-e,--existing}'[import file in patch dir]' \
854 860 '(--name -n 2)'{-n+,--name}'[patch file name]:name:' \
855 861 '(--force -f)'{-f,--force}'[overwrite existing files]' \
856 862 '*'{-r+,--rev}'[place existing revisions under mq control]:revision:_hg_revrange' \
857 863 '*:patch:_files'
858 864 }
859 865
860 866 _hg_cmd_qnew() {
861 867 _arguments -s -w : $_hg_global_opts $_hg_commit_opts \
862 868 '(--force -f)'{-f,--force}'[import uncommitted changes into patch]' \
863 869 ':patch:'
864 870 }
865 871
866 872 _hg_cmd_qnext() {
867 873 _arguments -s -w : $_hg_global_opts $_hg_qseries_opts
868 874 }
869 875
870 876 _hg_cmd_qpop() {
871 877 _arguments -s -w : $_hg_global_opts \
872 878 '(--all -a :)'{-a,--all}'[pop all patches]' \
873 879 '(--name -n)'{-n+,--name}'[queue name to pop]:' \
874 880 '(--force -f)'{-f,--force}'[forget any local changes]' \
875 881 ':patch:_hg_qapplied'
876 882 }
877 883
878 884 _hg_cmd_qprev() {
879 885 _arguments -s -w : $_hg_global_opts $_hg_qseries_opts
880 886 }
881 887
882 888 _hg_cmd_qpush() {
883 889 _arguments -s -w : $_hg_global_opts \
884 890 '(--all -a :)'{-a,--all}'[apply all patches]' \
885 891 '(--list -l)'{-l,--list}'[list patch name in commit text]' \
886 892 '(--merge -m)'{-m+,--merge}'[merge from another queue]:' \
887 893 '(--name -n)'{-n+,--name}'[merge queue name]:' \
888 894 '(--force -f)'{-f,--force}'[apply if the patch has rejects]' \
889 895 ':patch:_hg_qunapplied'
890 896 }
891 897
892 898 _hg_cmd_qrefresh() {
893 899 _arguments -s -w : $_hg_global_opts $_hg_pat_opts $_hg_commit_opts \
894 900 '(--git -g)'{-g,--git}'[use git extended diff format]' \
895 901 '(--short -s)'{-s,--short}'[short refresh]' \
896 902 '*:files:_hg_files'
897 903 }
898 904
899 905 _hg_cmd_qrename() {
900 906 _arguments -s -w : $_hg_global_opts \
901 907 ':patch:_hg_qseries' \
902 908 ':destination:'
903 909 }
904 910
905 911 _hg_cmd_qselect() {
906 912 _arguments -s -w : $_hg_global_opts \
907 913 '(--none -n :)'{-n,--none}'[disable all guards]' \
908 914 '(--series -s :)'{-s,--series}'[list all guards in series file]' \
909 915 '--pop[pop to before first guarded applied patch]' \
910 916 '--reapply[pop and reapply patches]' \
911 917 '*:guards:_hg_qguards'
912 918 }
913 919
914 920 _hg_cmd_qseries() {
915 921 _arguments -s -w : $_hg_global_opts $_hg_qseries_opts \
916 922 '(--missing -m)'{-m,--missing}'[print patches not in series]'
917 923 }
918 924
919 925 _hg_cmd_qunapplied() {
920 926 _arguments -s -w : $_hg_global_opts $_hg_qseries_opts
921 927 }
922 928
923 929 _hg_cmd_qtop() {
924 930 _arguments -s -w : $_hg_global_opts $_hg_qseries_opts
925 931 }
926 932
927 933 _hg_cmd_strip() {
928 934 _arguments -s -w : $_hg_global_opts \
929 935 '(--force -f)'{-f,--force}'[force multi-head removal]' \
930 936 '(--backup -b)'{-b,--backup}'[bundle unrelated changesets]' \
931 937 '(--nobackup -n)'{-n,--nobackup}'[no backups]' \
932 938 ':revision:_hg_tags'
933 939 }
934 940
935 941 _hg "$@"
General Comments 0
You need to be logged in to leave comments. Login now