# HG changeset patch # User Bryan O'Sullivan # Date 2013-03-14 23:50:53 # Node ID e3e601969ba1e56defad1c27dbdf9379cf9954c4 # Parent 69e4787b6867f958653d9556f9b98208fdda7570 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. diff --git a/contrib/bash_completion b/contrib/bash_completion --- a/contrib/bash_completion +++ b/contrib/bash_completion @@ -255,7 +255,7 @@ shopt -s extglob _hg_status "mar" ;; remove) - _hg_status "d" + _hg_status "mcd" ;; forget) _hg_status "a"