--- a/contrib/bash_completion Sun Sep 02 08:39:17 2018 +0800
+++ b/contrib/bash_completion Sun Sep 02 08:40:57 2018 +0800
@@ -206,6 +206,18 @@
_hg_fix_wordlist
return
;;
+ --color)
+ local choices='true false yes no always auto never debug'
+ COMPREPLY=(${COMPREPLY[@]:-} $(compgen -W '$choices' -- "$cur"))
+ _hg_fix_wordlist
+ return
+ ;;
+ --pager)
+ local choices='true false yes no always auto never'
+ COMPREPLY=(${COMPREPLY[@]:-} $(compgen -W '$choices' -- "$cur"))
+ _hg_fix_wordlist
+ return
+ ;;
esac
if [ -z "$cmd" ] || [ $COMP_CWORD -eq $i ]; then