[PATCH 2 of 2] completion: recognize the --output option

Nikolaj Sjujskij sterkrig at myopera.com
Fri Jun 28 15:19:57 CDT 2013


Den 2013-06-29 00:13:31 skrev Ahmed S. Darwish <darwish.07 at gmail.com>:

> # HG changeset patch
> # User Ahmed S. Darwish <darwish.07 at gmail.com>
> # Date 1372449143 -7200
> # Node ID d170fb7198f2bdeb7e44a999e9395efb52eb99ec
> # Parent  3466620d7f96769c469f7e42b08f1ca3d53feb86
> completion: recognize the --output option
  It's *bash*_completion.

> `--output <TAB>' now only lists the repository untracked files.
>
> diff -r 3466620d7f96 -r d170fb7198f2 contrib/bash_completion
> --- a/contrib/bash_completion	Fri Jun 28 21:50:51 2013 +0200
> +++ b/contrib/bash_completion	Fri Jun 28 21:52:23 2013 +0200
> @@ -255,7 +255,11 @@
>  	    _hg_debugpathcomplete -fa
>  	;;
>  	diff)
> -	    _hg_status "mar"
> +	    if [[ "$prev" = @(-o|--output) ]]; then
> +	     	_hg_status "u"
> +	    else
> +		_hg_status "mar"
> +	    fi
>  	;;
>  	revert)
>  	    _hg_debugpathcomplete
> exporting patch:
> <fdopen>
> _______________________________________________
> Mercurial-devel mailing list
> Mercurial-devel at selenic.com
> http://selenic.com/mailman/listinfo/mercurial-devel


More information about the Mercurial-devel mailing list