bash_completion: allow remove to complete normal files
authorBryan O'Sullivan <bryano@fb.com>
Thu, 14 Mar 2013 16:50:53 -0700
changeset 18768 e3e601969ba1
parent 18767 69e4787b6867
child 18769 83a99f10c45c
bash_completion: allow remove to complete normal files Previously, we only completed files that had already been manually deleted. That behaviour made no sense. We now complete unmodified, modified, and deleted files.
contrib/bash_completion
--- a/contrib/bash_completion	Thu Mar 14 16:49:02 2013 -0700
+++ b/contrib/bash_completion	Thu Mar 14 16:50:53 2013 -0700
@@ -255,7 +255,7 @@
 	    _hg_status "mar"
 	;;
 	remove)
-	    _hg_status "d"
+	    _hg_status "mcd"
 	;;
 	forget)
 	    _hg_status "a"