# HG changeset patch # User Thomas Arendsen Hein # Date 1126899091 -7200 # Node ID bc1815cf89a7d61194937672dd48470a05926e07 # Parent 325c07fd2ebdc8165d6263789f0663f0a1eddd3c Added new debug commands to bash_completion. diff -r 325c07fd2ebd -r bc1815cf89a7 contrib/bash_completion --- a/contrib/bash_completion Fri Sep 16 10:42:20 2005 -0700 +++ b/contrib/bash_completion Fri Sep 16 21:31:31 2005 +0200 @@ -11,6 +11,7 @@ if [[ "$cur" == de* ]]; then commands="$commands debugcheckstate debugstate debugindex" commands="$commands debugindexdot debugwalk debugdata" + commands="$commands debugancestor debugconfig debugrename" fi COMPREPLY=( ${COMPREPLY[@]:-} $(compgen -W "$commands" -- "$cur") ) }