[PATCH 2 of 7] bash_completion: expand aliased commands

Sean Farley sean.michael.farley at gmail.com
Thu Nov 21 16:56:06 CST 2013


# HG changeset patch
# User Sean Farley <sean.michael.farley at gmail.com>
# Date 1384978614 18000
#      Wed Nov 20 15:16:54 2013 -0500
# Node ID cac5a729db513d9fe374157d4ce225a6cd22149b
# Parent  30d87fe14465aa68d756cfa3e893f9caf044b358
bash_completion: expand aliased commands

diff --git a/contrib/bash_completion b/contrib/bash_completion
--- a/contrib/bash_completion
+++ b/contrib/bash_completion
@@ -217,10 +217,13 @@
         else
             return 1
         fi
     fi
 
+    local aliascmd=$(_hg_cmd showconfig alias.$cmd | awk '{print $1}')
+    [ -n "$aliascmd" ] && cmd=$aliascmd
+
     case "$cmd" in
         help)
             _hg_commands
         ;;
         export)


More information about the Mercurial-devel mailing list