# HG changeset patch # User Oleksandr Gavenko # Date 1677453164 -7200 # Node ID 0d77f5f13675c3ef914ecf057958a2d6ba693a25 # Parent 8ba787ff5ab832b579e85044cf5714ac9440013b Added completion for "hgsync status". diff -r 8ba787ff5ab8 -r 0d77f5f13675 .bash_completion --- a/.bash_completion Thu Feb 23 00:59:27 2023 +0200 +++ b/.bash_completion Mon Feb 27 01:12:44 2023 +0200 @@ -39,7 +39,7 @@ local cur=${COMP_WORDS[COMP_CWORD]} case $COMP_CWORD in 0|1) - COMPREPLY=( $(compgen -W "local remote pull push info --help" -- $cur) ) + COMPREPLY=( $(compgen -W "local remote pull push info status help --help" -- $cur) ) compopt +o nospace return ;; 2)