--- a/hgext/record.py Wed Oct 10 12:25:28 2018 -0400
+++ b/hgext/record.py Mon Oct 22 14:46:06 2018 -0400
@@ -32,9 +32,10 @@
@command("record",
# same options as commit + white space diff options
- [c for c in commands.table['^commit|ci'][1][:]
+ [c for c in commands.table['commit|ci'][1][:]
if c[1] != "interactive"] + cmdutil.diffwsopts,
- _('hg record [OPTION]... [FILE]...'))
+ _('hg record [OPTION]... [FILE]...'),
+ helpcategory=command.CATEGORY_COMMITTING)
def record(ui, repo, *pats, **opts):
'''interactively select changes to commit
@@ -94,6 +95,7 @@
@command('qrecord',
[],
_('hg qrecord [OPTION]... PATCH [FILE]...'),
+ helpcategory=command.CATEGORY_COMMITTING,
inferrepo=True)
def qrecord(ui, repo, patch, *pats, **opts):
'''interactively record a new patch
@@ -136,7 +138,7 @@
(qrecord,
# same options as qnew, but copy them so we don't get
# -i/--interactive for qrecord and add white space diff options
- mq.cmdtable['^qnew'][1][:] + cmdutil.diffwsopts,
+ mq.cmdtable['qnew'][1][:] + cmdutil.diffwsopts,
_('hg qrecord [OPTION]... PATCH [FILE]...'))
_wrapcmd('qnew', mq.cmdtable, qnew, _("interactively record a new patch"))