##// END OF EJS Templates
help: sort results from keyword search
Mads Kiilerich -
r16949:66721a0d default
parent child Browse files
Show More
@@ -3331,7 +3331,7 b' def help_(ui, name=None, unknowncmd=Fals'
3331 ('extensioncommands', _('Extension Commands'))):
3331 ('extensioncommands', _('Extension Commands'))):
3332 if matches[t]:
3332 if matches[t]:
3333 rst.append('%s:\n\n' % title)
3333 rst.append('%s:\n\n' % title)
3334 rst.extend(minirst.maketable(matches[t], 1))
3334 rst.extend(minirst.maketable(sorted(matches[t]), 1))
3335 rst.append('\n')
3335 rst.append('\n')
3336 elif name and name != 'shortlist':
3336 elif name and name != 'shortlist':
3337 i = None
3337 i = None
@@ -790,9 +790,9 b' Test keyword search help'
790
790
791 Commands:
791 Commands:
792
792
793 update update working directory (or switch revisions)
793 clone make a copy of an existing repository
794 paths show aliases for remote repositories
794 paths show aliases for remote repositories
795 clone make a copy of an existing repository
795 update update working directory (or switch revisions)
796
796
797 Extensions:
797 Extensions:
798
798
General Comments 0
You need to be logged in to leave comments. Login now