hgext/fastannotate/commands.py
changeset 40295 fa88170c10bb
parent 39818 24e493ec2229
child 40838 901f6ef670ca
equal deleted inserted replaced
40294:fabbf9310025 40295:fa88170c10bb
   220 
   220 
   221     return orig(ui, repo, *pats, **opts)
   221     return orig(ui, repo, *pats, **opts)
   222 
   222 
   223 def registercommand():
   223 def registercommand():
   224     """register the fastannotate command"""
   224     """register the fastannotate command"""
   225     name = '^fastannotate|fastblame|fa'
   225     name = 'fastannotate|fastblame|fa'
   226     command(name, **fastannotatecommandargs)(fastannotate)
   226     command(name, helpbasic=True, **fastannotatecommandargs)(fastannotate)
   227 
   227 
   228 def wrapdefault():
   228 def wrapdefault():
   229     """wrap the default annotate command, to be aware of the protocol"""
   229     """wrap the default annotate command, to be aware of the protocol"""
   230     extensions.wrapcommand(commands.table, 'annotate', _annotatewrapper)
   230     extensions.wrapcommand(commands.table, 'annotate', _annotatewrapper)
   231 
   231