# HG changeset patch # User Pierre-Yves David # Date 2022-04-04 13:35:59 # Node ID 51565fedfe7feee1f00702ee0bb70737af8678d5 # Parent 079197e94b243e620f0feba673c20771dbde1312 path: explicitly declare the `bookmarks.mode` suboptions This will help documentation and discovery. Differential Revision: https://phab.mercurial-scm.org/D12434 diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -1741,6 +1741,12 @@ coreconfigitem( generic=True, ) coreconfigitem( + b'paths', + b'.*:bookmarks.mode', + default='default', + generic=True, +) +coreconfigitem( b'phases', b'checksubrepos', default=b'follow',