[PATCH 5 of 7] bash_completion: remove restriction on bookmark completion

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


# HG changeset patch
# User Sean Farley <sean.michael.farley at gmail.com>
# Date 1384992804 18000
#      Wed Nov 20 19:13:24 2013 -0500
# Node ID 0eddd02ecdcc466e3f3496d3ed455925c0654e48
# Parent  14432a04ead843eacc54deadd88ed706b4f2de89
bash_completion: remove restriction on bookmark completion

Previously, we only completed a bookmark when deleting or renaming a
bookmark. Since we can now move a bookmark forward, we drop this restriction.

diff --git a/contrib/bash_completion b/contrib/bash_completion
--- a/contrib/bash_completion
+++ b/contrib/bash_completion
@@ -316,14 +316,12 @@
 # Completion for commands provided by extensions
 
 # bookmarks
 _hg_cmd_bookmarks()
 {
-    if [[ "$prev" = @(-d|--delete|-m|--rename) ]]; then
-        _hg_bookmarks
-        return
-    fi
+    _hg_bookmarks
+    return
 }
 
 # mq
 _hg_ext_mq_patchlist()
 {


More information about the Mercurial-devel mailing list