Details
Details
- Reviewers
spectral - Group Reviewers
hg-reviewers - Commits
- rHG93fdf00596e4: zsh_completion: remove completion for obsolete graphlog extension
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
spectral |
hg-reviewers |
Lint Skipped |
Unit Tests Skipped |
'--filemap[remap file names using contents of file]:file:_files' \ | '--filemap[remap file names using contents of file]:file:_files' \ | ||||
'--splicemap[splice synthesized history into place]:file:_files' \ | '--splicemap[splice synthesized history into place]:file:_files' \ | ||||
'--branchmap[change branch names while converting]:file:_files' \ | '--branchmap[change branch names while converting]:file:_files' \ | ||||
'--branchsort[try to sort changesets by branches]' \ | '--branchsort[try to sort changesets by branches]' \ | ||||
'--datesort[try to sort changesets by date]' \ | '--datesort[try to sort changesets by date]' \ | ||||
'--sourcesort[preserve source changesets order]' | '--sourcesort[preserve source changesets order]' | ||||
} | } | ||||
# Graphlog | |||||
_hg_cmd_glog() { | |||||
_hg_cmd_log $@ | |||||
} | |||||
# Purge | # Purge | ||||
_hg_cmd_purge() { | _hg_cmd_purge() { | ||||
_arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_subrepos_opts \ | _arguments -s -S : $_hg_global_opts $_hg_pat_opts $_hg_subrepos_opts \ | ||||
'(--abort-on-err -a)'{-a,--abort-on-err}'[abort if an error occurs]' \ | '(--abort-on-err -a)'{-a,--abort-on-err}'[abort if an error occurs]' \ | ||||
'--all[purge ignored files too]' \ | '--all[purge ignored files too]' \ | ||||
'(--print -p)'{-p,--print}'[print filenames instead of deleting them]' \ | '(--print -p)'{-p,--print}'[print filenames instead of deleting them]' \ | ||||
'(--print0 -0)'{-0,--print0}'[end filenames with NUL, for use with xargs (implies -p/--print)]' | '(--print0 -0)'{-0,--print0}'[end filenames with NUL, for use with xargs (implies -p/--print)]' | ||||
} | } | ||||
_hg "$@" | _hg "$@" |