##// END OF EJS Templates
bash_completion: add rebase rev completion
Kevin Bullock -
r17463:e49771e2 default
parent child Browse files
Show More
@@ -386,6 +386,13 b' complete -o bashdefault -o default -F _h'
386 fi
386 fi
387 }
387 }
388
388
389 _hg_cmd_rebase() {
390 if [[ "$prev" = @(-s|--source|-d|--dest|-b|--base|-r|--rev) ]]; then
391 _hg_labels
392 return
393 fi
394 }
395
389 _hg_cmd_strip()
396 _hg_cmd_strip()
390 {
397 {
391 _hg_labels
398 _hg_labels
General Comments 0
You need to be logged in to leave comments. Login now