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
Paul