# HG changeset patch # User Thomas Arendsen Hein # Date 2005-09-16 19:31:31 # Node ID bc1815cf89a7d61194937672dd48470a05926e07 # Parent 325c07fd2ebdc8165d6263789f0663f0a1eddd3c Added new debug commands to bash_completion. diff --git a/contrib/bash_completion b/contrib/bash_completion --- a/contrib/bash_completion +++ b/contrib/bash_completion @@ -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") ) }