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

Ahmed S. Darwish darwish.07 at gmail.com
Fri Jun 28 15:13:31 CDT 2013


# 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

`--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>


More information about the Mercurial-devel mailing list