# HG changeset patch # User Sean Farley # Date 1384992804 18000 # Node ID 6b771bcd1a6203710fb832b99f1257f11f93de80 # Parent 25cb1d96c3078d4d15a4df17bdc9a28baf3edaf4 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 -r 25cb1d96c307 -r 6b771bcd1a62 contrib/bash_completion --- a/contrib/bash_completion Wed Nov 20 14:45:18 2013 -0500 +++ b/contrib/bash_completion Wed Nov 20 19:13:24 2013 -0500 @@ -318,10 +318,8 @@ # bookmarks _hg_cmd_bookmarks() { - if [[ "$prev" = @(-d|--delete|-m|--rename) ]]; then - _hg_bookmarks - return - fi + _hg_bookmarks + return } # mq