##// END OF EJS Templates
zsh: add qbase and qtip to qapplied completions
Brendan Cully -
r3549:3dbec3f6 default
parent child Browse files
Show More
@@ -506,7 +506,11 b' typeset -A _hg_cmd_globals'
506 _hg_qapplied() {
506 _hg_qapplied() {
507 typeset -a patches
507 typeset -a patches
508 patches=($(_hg_cmd qapplied))
508 patches=($(_hg_cmd qapplied))
509 (( $#patches )) && _describe -t hg-applied-patches 'applied patches' patches
509 if (( $#patches ))
510 then
511 patches+=(qbase qtip)
512 _describe -t hg-applied-patches 'applied patches' patches
513 fi
510 }
514 }
511
515
512 _hg_qunapplied() {
516 _hg_qunapplied() {
General Comments 0
You need to be logged in to leave comments. Login now