2016-07-14 0:55 GMT+02:00 PAUL DEBRUICKER <pdebruic@gmail.com>:
They are already grouped by class.�� Having the class name there makes me have to side scroll to read the list more often (most of the time)�� than I'd prefer (never-ish).�� It seems like its just the labels that have been changed since Pharo 4.

MCMethodDefinition>>#summary is�� where the label is defined.�� So in that class add

selectorString
�� �� �� �� ^selector printString


And PSMCPatchOperationWrapper is where the label is set so
change

PSMCPatchOperationWrapper>>#asString to

asString
�� �� �� �� "Answer the method name."

�� �� �� �� ^self item definition selectorString

can you please open a bug report.
I think the change usefull and easy. (I think PSMCPatchOperationWrapper>>#asString could just call shortSummaryPrefix instead)

asString
������ "Answer the method name."
������
������ ^self item definition shortSummaryPrefix
��


Paul