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.
--- 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"