hgext/remotenames.py
changeset 45942 89a2afe31e82
parent 43105 649d3ac37a12
child 47062 f38bf44e077f
equal deleted inserted replaced
45941:346af7687c6f 45942:89a2afe31e82
    64 configitem = registrar.configitem(configtable)
    64 configitem = registrar.configitem(configtable)
    65 templatekeyword = registrar.templatekeyword()
    65 templatekeyword = registrar.templatekeyword()
    66 revsetpredicate = registrar.revsetpredicate()
    66 revsetpredicate = registrar.revsetpredicate()
    67 
    67 
    68 configitem(
    68 configitem(
    69     b'remotenames', b'bookmarks', default=True,
    69     b'remotenames',
       
    70     b'bookmarks',
       
    71     default=True,
    70 )
    72 )
    71 configitem(
    73 configitem(
    72     b'remotenames', b'branches', default=True,
    74     b'remotenames',
       
    75     b'branches',
       
    76     default=True,
    73 )
    77 )
    74 configitem(
    78 configitem(
    75     b'remotenames', b'hoistedpeer', default=b'default',
    79     b'remotenames',
       
    80     b'hoistedpeer',
       
    81     default=b'default',
    76 )
    82 )
    77 
    83 
    78 
    84 
    79 class lazyremotenamedict(mutablemapping):
    85 class lazyremotenamedict(mutablemapping):
    80     """
    86     """